ProviderConnectionPointCollection.Item[] Property

Definition

Gets a specific member of the collection according to its position or a unique identifier.

Overloads

Item[Int32]

Gets a member of the collection based on its position in the collection.

Item[String]

Gets a member of the collection based on a unique string identifier.

Item[Int32]

Gets a member of the collection based on its position in the collection.

public:
 property System::Web::UI::WebControls::WebParts::ProviderConnectionPoint ^ default[int] { System::Web::UI::WebControls::WebParts::ProviderConnectionPoint ^ get(int index); };
public System.Web.UI.WebControls.WebParts.ProviderConnectionPoint this[int index] { get; }
member this.Item(int) : System.Web.UI.WebControls.WebParts.ProviderConnectionPoint
Default Public ReadOnly Property Item(index As Integer) As ProviderConnectionPoint

Parameters

index
Int32

The index of a particular ProviderConnectionPoint in the collection.

Property Value

A ProviderConnectionPoint at the index specified.

See also

Applies to

Item[String]

Gets a member of the collection based on a unique string identifier.

public:
 property System::Web::UI::WebControls::WebParts::ProviderConnectionPoint ^ default[System::String ^] { System::Web::UI::WebControls::WebParts::ProviderConnectionPoint ^ get(System::String ^ id); };
public System.Web.UI.WebControls.WebParts.ProviderConnectionPoint this[string id] { get; }
member this.Item(string) : System.Web.UI.WebControls.WebParts.ProviderConnectionPoint
Default Public ReadOnly Property Item(id As String) As ProviderConnectionPoint

Parameters

id
String

A String serving as the unique identifier for a particular ProviderConnectionPoint in the collection.

Property Value

The first ProviderConnectionPoint whose ID equals the value of id.

See also

Applies to