FederationCollection.Item[] Property

Definition

Returns the federation object in the collection.

Overloads

Item[Int32]

Returns the federation object at the specified index in the collection.

Item[String]

Returns the federation object with the specified name in the collection.

Item[Int32]

Returns the federation object at the specified index in the collection.

public:
 property Microsoft::SqlServer::Management::Smo::Federation ^ default[int] { Microsoft::SqlServer::Management::Smo::Federation ^ get(int index); };
public Microsoft.SqlServer.Management.Smo.Federation this[int index] { get; }
member this.Item(int) : Microsoft.SqlServer.Management.Smo.Federation
Default Public ReadOnly Property Item(index As Integer) As Federation

Parameters

index
Int32

The index of the federation in the collection.

Property Value

The federation object at the specified index.

Applies to

Item[String]

Returns the federation object with the specified name in the collection.

public:
 property Microsoft::SqlServer::Management::Smo::Federation ^ default[System::String ^] { Microsoft::SqlServer::Management::Smo::Federation ^ get(System::String ^ name); };
public Microsoft.SqlServer.Management.Smo.Federation this[string name] { get; }
member this.Item(string) : Microsoft.SqlServer.Management.Smo.Federation
Default Public ReadOnly Property Item(name As String) As Federation

Parameters

name
String

The name of the federation.

Property Value

The federation object with the specified name.

Applies to