SchemeSettingElementCollection.Item[] Proprietà

Definizione

Accede a un'istanza della classe SchemeSettingElementCollection.

Overload

Item[Int32]

Ottiene un elemento in corrispondenza dell'indice specificato nell'insieme SchemeSettingElementCollection.

Item[String]

Ottiene un elemento dall'insieme SchemeSettingElementCollection.

Item[Int32]

Source:
SchemeSettingElementCollection.cs
Source:
SchemeSettingElementCollection.cs
Source:
SchemeSettingElementCollection.cs

Ottiene un elemento in corrispondenza dell'indice specificato nell'insieme SchemeSettingElementCollection.

public:
 property System::Configuration::SchemeSettingElement ^ default[int] { System::Configuration::SchemeSettingElement ^ get(int index); };
public System.Configuration.SchemeSettingElement this[int index] { get; }
member this.Item(int) : System.Configuration.SchemeSettingElement
Default Public ReadOnly Property Item(index As Integer) As SchemeSettingElement

Parametri

index
Int32

Indice dell'oggetto SchemeSettingElement da restituire.

Valore della proprietà

Classe SchemeSettingElement specificata.

Eccezioni

Il parametro index è minore di zero.

-oppure-

L'elemento specificato dal parametro è null o è stato rimosso.

Commenti

Utilizzare la Item[] proprietà per ottenere o impostare un oggetto specificato SchemeSettingElement contenuto all'interno di questa SchemeSettingElementCollection classe.

Vedi anche

Si applica a

Item[String]

Source:
SchemeSettingElementCollection.cs
Source:
SchemeSettingElementCollection.cs
Source:
SchemeSettingElementCollection.cs

Ottiene un elemento dall'insieme SchemeSettingElementCollection.

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

Parametri

name
String

Riferimento stringa all'oggetto SchemeSettingElement nell'insieme.

Valore della proprietà

Oggetto SchemeSettingElement contenuto nell'insieme.

Commenti

Il valore restituito è null se l'elemento non può essere trovato o è stato rimosso.

Vedi anche

Si applica a