RestoreFolderCollection.IList.IndexOf Method
Determines the index of a specific item in the collection.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Private Function IndexOf ( _
value As Object _
) As Integer Implements IList.IndexOf
'Usage
Dim instance As RestoreFolderCollection
Dim value As Object
Dim returnValue As Integer
returnValue = CType(instance, IList).IndexOf(value)
int IList.IndexOf(
Object value
)
private:
virtual int IndexOf(
Object^ value
) sealed = IList::IndexOf
private abstract IndexOf :
value:Object -> int
private override IndexOf :
value:Object -> int
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
Parameters
- value
Type: System.Object
The object to locate.
Return Value
Type: System.Int32
The index of value if found in the list; otherwise, -1.