Share via


WebSecurity.IsConfirmed Method

Returns a value that indicates whether the user has been confirmed.

Namespace:  WebMatrix.WebData
Assembly:  WebMatrix.WebData (in WebMatrix.WebData.dll)

Syntax

'Declaration
Public Shared Function IsConfirmed ( _
    userName As String _
) As Boolean
'Usage
Dim userName As String 
Dim returnValue As Boolean 

returnValue = WebSecurity.IsConfirmed(userName)
public static bool IsConfirmed(
    string userName
)
public:
static bool IsConfirmed(
    String^ userName
)
static member IsConfirmed : 
        userName:string -> bool
public static function IsConfirmed(
    userName : String
) : boolean

Parameters

Return Value

Type: System.Boolean
true if the user is confirmed; otherwise, false.

Remarks

This method checks the user account that is identified by the userName parameter. If the membership or role provider has confirmed the user (for example, the user confirmed the account by clicking an email link), the method returns true. If a registration has not been confirmed, the user cannot log in.

See Also

Reference

WebSecurity Class

WebMatrix.WebData Namespace