NamedComponentCollection.IndexOfName Method (String)

 

Applies To: SQL Server (starting with 2016)

Gets the index of the NamedComponent, identified by name, in the collection.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices.Core (in Microsoft.AnalysisServices.Core.dll)

Syntax

public int IndexOfName(
    string name
)
public:
int IndexOfName(
    String^ name
)
member IndexOfName : 
        name:string -> int
Public Function IndexOfName (
    name As String
) As Integer

Parameters

  • name
    Type: System.String

    The name to be located in the collection. 

Return Value

Type: System.Int32

The zero-based index at which the NamedComponent has been found in the collection.

See Also

NamedComponentCollection Class
Microsoft.AnalysisServices Namespace

Return to top