FormsAuthenticationUserCollection.Get Метод

Определение

Получает указанный элемент коллекции FormsAuthenticationUser.

Перегрузки

Get(String)

Получает элемент коллекции FormsAuthenticationUser с указанным именем.

Get(Int32)

Получает элемент коллекции FormsAuthenticationUser по указанному индексу.

Get(String)

Получает элемент коллекции FormsAuthenticationUser с указанным именем.

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

Параметры

name
String

Имя пользователя.

Возвращаемое значение

FormsAuthenticationUser

Объект FormsAuthenticationUser, содержащий имя пользователя и пароль.

Примеры

В следующем примере кода показано, как получить доступ к учетным данным пользователя с указанным именем.

// 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")

Применяется к

Get(Int32)

Получает элемент коллекции FormsAuthenticationUser по указанному индексу.

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

Параметры

index
Int32

Пользовательский индекс коллекции.

Возвращаемое значение

FormsAuthenticationUser

FormsAuthenticationUser, содержащий имя пользователя и пароль.

Примеры

В следующем примере кода показано, как получить доступ к учетным данным пользователя по указанному индексу.

// 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)

Применяется к