SoapExtensionTypeElementCollection.Item[] Property

Definition

Gets or sets an element in the collection.

Overloads

Item[Int32]

Gets or sets the element at a specified index in the collection.

Item[Object]

Gets or sets the SoapExtensionTypeElement having the specified key in the collection.

Item[Int32]

Gets or sets the element at a specified index in the collection.

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

Parameters

index
Int32

The zero-based index into the collection.

Property Value

The SoapExtensionTypeElement that exists at the specified index.

Applies to

Item[Object]

Gets or sets the SoapExtensionTypeElement having the specified key in the collection.

public:
 property System::Web::Services::Configuration::SoapExtensionTypeElement ^ default[System::Object ^] { System::Web::Services::Configuration::SoapExtensionTypeElement ^ get(System::Object ^ key); void set(System::Object ^ key, System::Web::Services::Configuration::SoapExtensionTypeElement ^ value); };
public System.Web.Services.Configuration.SoapExtensionTypeElement this[object key] { get; set; }
member this.Item(obj) : System.Web.Services.Configuration.SoapExtensionTypeElement with get, set
Default Public Property Item(key As Object) As SoapExtensionTypeElement

Parameters

key
Object

The key of the SoapExtensionTypeElement to get or set in the collection.

Property Value

The SoapExtensionTypeElement with the specified key.

Exceptions

The SoapExtensionTypeElement with the specified key was not found in the collection.

Applies to