IPeekResultCollection Interface

Visual Studio 2015
 

Represents a collection of IPeekResults populated by content-type specific IPeekResultSource implementations when they are being queried for IPeekResults.

Namespace:   Microsoft.VisualStudio.Language.Intellisense
Assembly:  Microsoft.VisualStudio.Language.Intellisense (in Microsoft.VisualStudio.Language.Intellisense.dll)

public interface IPeekResultCollection

NameDescription
System_CAPS_pubpropertyCount

Gets the number of elements contained in the IPeekResultCollection.

System_CAPS_pubpropertyItem[Int32]

Gets or sets the result at the specified index.

NameDescription
System_CAPS_pubmethodAdd(IPeekResult)

Adds an item to the IPeekResultCollection.

System_CAPS_pubmethodClear()

Removes all results from the IPeekResultCollection.

System_CAPS_pubmethodContains(IPeekResult)

Determines whether the IPeekResultCollection contains a specific result.

System_CAPS_pubmethodIndexOf(IPeekResult, Int32)

Finds the index of the result or returns -1 if the result was not found.

System_CAPS_pubmethodInsert(Int32, IPeekResult)

Inserts a result into the collection at the specified index.

System_CAPS_pubmethodMove(Int32, Int32)

Moves the result at the specified index to a new location in the collection.

System_CAPS_pubmethodRemove(IPeekResult)

Removes the first occurrence of a specific result from the <see cref="IPeekResultCollection"/>./// </summary>/// <param name="item">The result to remove from the <see cref="IPeekResultCollection"/></param>/// <returns><

System_CAPS_pubmethodRemoveAt(Int32)

Removes the result at the specified index of the collection.

Return to top
Show: