FormsAuthenticationUserCollection.Set(FormsAuthenticationUser) Methode

Definition

Ändert das angegebene FormsAuthenticationUser-Objekt in der Auflistung

public:
 void Set(System::Web::Configuration::FormsAuthenticationUser ^ user);
public void Set (System.Web.Configuration.FormsAuthenticationUser user);
member this.Set : System.Web.Configuration.FormsAuthenticationUser -> unit
Public Sub Set (user As FormsAuthenticationUser)

Parameter

user
FormsAuthenticationUser

Das FormsAuthenticationUserCollection-Objekt, das geändert werden muss

Beispiele

Im folgenden Codebeispiel wird die Verwendung der Set-Methode veranschaulicht.

// Using method Set.

// Define the SHA1 encrypted password.
string newPassword = 
    "5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8";
// Define the user name.
string currentUserName = "userName";

// Create the new user.
FormsAuthenticationUser theUser = 
    new FormsAuthenticationUser(currentUserName, newPassword);

formsAuthenticationCredentials.Users.Set(theUser);

if (!authenticationSection.SectionInformation.IsLocked)
{
    configuration.Save();
}
' Using method Set.
' Define the SHA1 encrypted password.
  Dim newPassword As String = _
  "5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8"
' Define the user name.
Dim currentUserName As String = "userName"

' Create the new user.
  Dim theUser _
  As New FormsAuthenticationUser(currentUserName, newPassword)

formsAuthenticationCredentials.Users.Set(theUser)

If Not authenticationSection.SectionInformation.IsLocked Then
   configuration.Save()
End If

Gilt für: