UserValidatedEventArgs Class

Definition

Provides data for the UserValidated event.

C#
public class UserValidatedEventArgs : EventArgs
Inheritance
UserValidatedEventArgs

Examples

The following example code demonstrates how to use this class to display the user name in the title bar of a form.

C#
private ClientFormsAuthenticationMembershipProvider formsMembershipProvider =
    (ClientFormsAuthenticationMembershipProvider)
    System.Web.Security.Membership.Provider;
private String appName = "ClientAppServicesDemo";

private void AttachUserValidatedEventHandler()
{
    formsMembershipProvider.UserValidated += 
        new EventHandler<UserValidatedEventArgs>(Form1_UserValidated);
}

private void Form1_UserValidated(object sender, UserValidatedEventArgs e)
{
    // Set the form's title bar to the application name and the user name.
    this.Text = String.Format("{0} ({1})", appName, e.UserName);
}

Remarks

This class provides access to the user name of the validated user through the UserName property.

For more information about how to handle events, see Handling and Raising Events.

Constructors

UserValidatedEventArgs(String)

Initializes a new instance of the UserValidatedEventArgs class.

Properties

UserName

Gets the user name of the validated user.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

Produk Versi
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also