Compartir a través de


FormsAuthenticationUserCollection.Item[] Propiedad

Definición

Obtiene el elemento de colección FormsAuthenticationUser especificado.

Sobrecargas

Item[Int32]

Obtiene el FormsAuthenticationUser en el índice especificado.

Item[String]

Obtiene el FormsAuthenticationUser con el nombre especificado.

Item[Int32]

Obtiene el FormsAuthenticationUser en el índice especificado.

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

Parámetros

index
Int32

Índice del usuario de la colección.

Valor de propiedad

Un FormsAuthenticationUser que contiene el nombre de usuario y la contraseña.

Se aplica a

Item[String]

Obtiene el FormsAuthenticationUser con el nombre especificado.

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

Parámetros

name
String

Nombre del usuario.

Valor de propiedad

Objeto FormsAuthenticationUser que contiene el nombre de usuario y la contraseña.

Se aplica a