Returns the index of the data object in the collection that matches the specified identifier.
Namespace: Microsoft.VisualStudio.Data.Services
Assembly: Microsoft.VisualStudio.Data.Services (in Microsoft.VisualStudio.Data.Services.dll)
Syntax
'宣言
Function IndexOf ( _
identifier As Object() _
) As Integer
'使用
Dim instance As IVsDataObjectCollection
Dim identifier As Object()
Dim returnValue As Integer
returnValue = instance.IndexOf(identifier)
int IndexOf(
Object[] identifier
)
int IndexOf(
array<Object^>^ identifier
)
function IndexOf(
identifier : Object[]
) : int
Parameters
identifier
Type: []An array containing the identifier parts that uniquely identify the data object requested.
Return Value
Type: System.Int32
An integer value, greater than or equal to 0, representing the index of the data object in the collection that matches the specified identifier, or -1 if the data object is not found.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
IVsDataObjectCollection Interface