Compartir a través de


ProfileGroupSettingsCollection.Item[] Propiedad

Definición

Obtiene o establece un objeto ProfileGroupSettings.

Sobrecargas

Item[Int32]

Obtiene o establece el objeto ProfileGroupSettings situado en la ubicación de índice especificada.

Item[String]

Obtiene o establece el objeto ProfileGroupSettings con el nombre especificado.

Item[Int32]

Obtiene o establece el objeto ProfileGroupSettings situado en la ubicación de índice especificada.

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

Parámetros

index
Int32

Índice de un objeto ProfileGroupSettings de la colección.

Valor de propiedad

ProfileGroupSettings

El objeto ProfileGroupSettings situado en el índice especificado, o null si no hay ningún objeto en ese índice.

Consulte también

Se aplica a

Item[String]

Obtiene o establece el objeto ProfileGroupSettings con el nombre especificado.

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

Parámetros

name
String

Nombre de un objeto ProfileGroupSettings de la colección.

Valor de propiedad

ProfileGroupSettings

El objeto ProfileGroupSettings con el nombre especificado o null si no hay ningún objeto con ese nombre.

Consulte también

Se aplica a