ProtocolCollection.Item[] Property

Definition

Gets the specified ProtocolElement collection item.

Overloads

Item[Int32]

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets the ProtocolElement object at the specified index of the collection.

Item[String]

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets the value of the first entry with the specified key.

Remarks

Item[] is introduced in the .NET Framework 3.5. For more information, see Versions and Dependencies.

Item[Int32]

Gets the ProtocolElement object at the specified index of the collection.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 property System::Web::Configuration::ProtocolElement ^ default[int] { System::Web::Configuration::ProtocolElement ^ get(int index); void set(int index, System::Web::Configuration::ProtocolElement ^ value); };
public System.Web.Configuration.ProtocolElement this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.ProtocolElement with get, set
Default Public Property Item(index As Integer) As ProtocolElement

Parameters

index
Int32

The index of the ProtocolElement object in the ProtocolCollection instance.

Property Value

A ProtocolElement object.

Remarks

Item[] is introduced in the .NET Framework 3.5. For more information, see Versions and Dependencies.

Applies to

Item[String]

Gets the value of the first entry with the specified key.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 property System::Web::Configuration::ProtocolElement ^ default[System::String ^] { System::Web::Configuration::ProtocolElement ^ get(System::String ^ name); };
public System.Web.Configuration.ProtocolElement this[string name] { get; }
member this.Item(string) : System.Web.Configuration.ProtocolElement
Default Public ReadOnly Property Item(name As String) As ProtocolElement

Parameters

name
String

The key of the entry to get.

Property Value

A ProtocolElement object that represents the value of the first entry with the specified key, if found; otherwise, null.

Remarks

Item[] is introduced in the .NET Framework 3.5. For more information, see Versions and Dependencies.

Applies to