Dropbox .NET SDK
Show / Hide Table of Contents

Class SearchMatchV2

The search match v2 object

Inheritance
object
SearchMatchV2
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class SearchMatchV2

Constructors

View Source

SearchMatchV2(MetadataV2, SearchMatchTypeV2, IEnumerable<HighlightSpan>)

Initializes a new instance of the SearchMatchV2 class.

Declaration
public SearchMatchV2(MetadataV2 metadata, SearchMatchTypeV2 matchType = null, IEnumerable<HighlightSpan> highlightSpans = null)
Parameters
Type Name Description
MetadataV2 metadata

The metadata for the matched file or folder.

SearchMatchTypeV2 matchType

The type of the match.

IEnumerable<HighlightSpan> highlightSpans

The list of HighlightSpan determines which parts of the file title should be highlighted.

Properties

View Source

HighlightSpans

The list of HighlightSpan determines which parts of the file title should be highlighted.

Declaration
public IList<HighlightSpan> HighlightSpans { get; protected set; }
Property Value
Type Description
IList<HighlightSpan>
View Source

MatchType

The type of the match.

Declaration
public SearchMatchTypeV2 MatchType { get; protected set; }
Property Value
Type Description
SearchMatchTypeV2
View Source

Metadata

The metadata for the matched file or folder.

Declaration
public MetadataV2 Metadata { get; protected set; }
Property Value
Type Description
MetadataV2
  • View Source
In this article
Back to top Dropbox .NET SDK