IncrementalSearchResult Structure

 

Consolidates the result of an incremental search operation.

Namespace:   Microsoft.VisualStudio.Text.IncrementalSearch
Assembly:  Microsoft.VisualStudio.Text.UI (in Microsoft.VisualStudio.Text.UI.dll)

public struct IncrementalSearchResult

NameDescription
System_CAPS_pubmethodIncrementalSearchResult(Boolean, Boolean, Boolean, Boolean)

Initializes a new instance of IncrementalSearchResult with the specified properties.

NameDescription
System_CAPS_pubpropertyPassedEndOfBuffer

Determines whether the search wrapped around the end of the buffer to its beginning.

System_CAPS_pubpropertyPassedStartOfBuffer

Determines whether the search wrapped around the start of the buffer to its end.

System_CAPS_pubpropertyPassedStartOfSearch

Determines whether the search passed the first item found.

System_CAPS_pubpropertyResultFound

Determines whether the search for the term was successful.

NameDescription
System_CAPS_pubmethodEquals(Object)

Determines whether the contents of two IncrementalSearchResult objects are the same.(Overrides ValueType.Equals(Object).)

System_CAPS_pubmethodGetHashCode()

Gets the hash code for the object.(Overrides ValueType.GetHashCode().)

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_pubmethodToString()

(Inherited from ValueType.)

NameDescription
System_CAPS_puboperatorSystem_CAPS_staticEquality(IncrementalSearchResult, IncrementalSearchResult)

Determines whether the contents of two IncrementalSearchResult objects are the same.

System_CAPS_puboperatorSystem_CAPS_staticInequality(IncrementalSearchResult, IncrementalSearchResult)

Determines whether the contents of two IncrementalSearchResult objects are different.

This result indicates whether the item was found, whether the search caused the cursor to wrap around the beginning or end of the buffer, and the position of the first result.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: