Gets the membership user in the collection referenced by the specified user name.

Namespace: Novalys.VisualGuard.Security.Membership
Assembly: Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2016.0.105.16 (2016.0.105.16)

Syntax

C#
public VGMembershipUser this[
	string name
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( 
	name As String
) As VGMembershipUser
	Get

Parameters

name
Type: System..::..String
The Username of the VGMembershipUser to retrieve from the collection.

Return Value

Type: VGMembershipUser
a VGMembershipUser object representing the user if the user exists. null (Nothing in VB.Net) if the user does not exist in the collection.

Remarks

this method can only be used to look for a Visual Guard user. You must specify the authentication mode to remove database or windows account.

See Also