FormsAuthenticationUser Constructor (String, String)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the FormsAuthenticationUser class using the passed parameters.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

Public Sub New (
	name As String,
	password As String
)

Parameters

name
Type: System.String

User's name.

password
Type: System.String

User's password.

This constructor creates a FormsAuthenticationUser object using the passed parameters.

The following code example shows how to create a FormsAuthenticationUser object.

' Define the user name.
Dim name As String = "userName"
' Define the encrypted password.
  Dim password As String = _
  "5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8"

' Create a new FormsAuthenticationUser object.
  Dim newformsAuthenticationUser _
  As New FormsAuthenticationUser(name, password)

.NET Framework
Available since 2.0
Return to top
Show: