Partager via


FormsAuthenticationUserCollection.Get Méthode

Définition

Obtient l'élément de collection FormsAuthenticationUser spécifié.

Surcharges

Get(String)

Obtient l'élément de collection FormsAuthenticationUser avec le nom spécifié.

Get(Int32)

Obtient l'élément de collection FormsAuthenticationUser à l'index spécifié.

Get(String)

Obtient l'élément de collection FormsAuthenticationUser avec le nom spécifié.

public:
 System::Web::Configuration::FormsAuthenticationUser ^ Get(System::String ^ name);
public System.Web.Configuration.FormsAuthenticationUser Get (string name);
member this.Get : string -> System.Web.Configuration.FormsAuthenticationUser
Public Function Get (name As String) As FormsAuthenticationUser

Paramètres

name
String

Nom de l'utilisateur.

Retours

FormsAuthenticationUser

Objet FormsAuthenticationUser qui contient le nom d'utilisateur et le mot de passe.

Exemples

L’exemple de code suivant montre comment accéder aux informations d’identification d’un utilisateur avec le nom spécifié.

// Get the user with the specified name.
FormsAuthenticationUser storedUser = 
    formsAuthenticationCredentials.Users.Get("userName");
' Get the user with the specified name.
  Dim storedUser As FormsAuthenticationUser = _
  formsAuthenticationCredentials.Users.Get("userName")

S’applique à

Get(Int32)

Obtient l'élément de collection FormsAuthenticationUser à l'index spécifié.

public:
 System::Web::Configuration::FormsAuthenticationUser ^ Get(int index);
public System.Web.Configuration.FormsAuthenticationUser Get (int index);
member this.Get : int -> System.Web.Configuration.FormsAuthenticationUser
Public Function Get (index As Integer) As FormsAuthenticationUser

Paramètres

index
Int32

Index de l'utilisateur de collection.

Retours

FormsAuthenticationUser

FormsAuthenticationUser qui contient le nom d'utilisateur et le mot de passe.

Exemples

L’exemple de code suivant montre comment accéder aux informations d’identification d’un utilisateur à l’index spécifié.

// Get the user at the specified index.
FormsAuthenticationUser storedUser2 = 
    formsAuthenticationCredentials.Users.Get(0);
' Get the user at the specified index.
  Dim storedUser2 As FormsAuthenticationUser = _
  formsAuthenticationCredentials.Users.Get(0)

S’applique à