FormsAuthenticationUserCollection.Add Method (FormsAuthenticationUser)

 

Adds a FormsAuthenticationUser object to the collection.

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

Public Sub Add (
	user As FormsAuthenticationUser
)

Parameters

user
Type: System.Web.Configuration.FormsAuthenticationUser

The FormsAuthenticationUser object to add to the collection.

Exception Condition
ConfigurationException

The FormsAuthenticationUser object already exists in the collection, or the collection is read-only.

The collection must not contain a FormsAuthenticationUser object with the same name.

The following code example shows how to use the Add method.

' Using method Add.
' Define the SHA1 encrypted password.
  Dim password As String = _
  "5BAA61E4C9B93F3F0682250B6CF8331B7EE68FD8"
' Define the user name.
Dim userName As String = "newUser"

' Create the new user.
  Dim currentUser _
  As New FormsAuthenticationUser(userName, password)

' Execute the Add method.
formsAuthenticationCredentials.Users.Add(currentUser)

' Update if not locked
If Not authenticationSection.SectionInformation.IsLocked Then
   configuration.Save()
End If

.NET Framework
Available since 2.0
Return to top
Show: