FormsAuthenticationUserCollection.Item[] Propiedad

Definición

Obtiene el elemento de colección especificado FormsAuthenticationUser .

Sobrecargas

Nombre Description
Item[Int32]

Obtiene en FormsAuthenticationUser el índice especificado.

Item[String]

Obtiene con FormsAuthenticationUser el nombre especificado.

Item[Int32]

Obtiene en FormsAuthenticationUser 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

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

Se aplica a

Item[String]

Obtiene con FormsAuthenticationUser 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

El nombre del usuario.

Valor de propiedad

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

Se aplica a