ServerPropertyCollection.IList.IndexOf Method (Object)
Applies To: SQL Server (starting with 2016)
Determines the index of a specific item in the collection.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)
Syntax
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
Private Function IndexOf (
value As Object
) As Integer
Implements IList.IndexOf
Parameters
value
Type: System.ObjectThe object to locate.
Return Value
Type: System.Int32
The index of value if found in the list; otherwise, -1.
Implements
See Also
ServerPropertyCollection Class
Microsoft.AnalysisServices Namespace
Return to top