Returns a boolean value indicating whether the user is a member of the current application.
You can use the property ApplicationId to determines the application for which the VGMembershipUser was created.
The following code show how to test if a user is a member of the current application:
[Visual Basic]
If user.IsMemberOfApplication Then
MessageBox.Show(string.Format("'{0}' is a member of the application", user.UserName)
End If
[c#]
if (user.IsMemberOfApplication)
{
MessageBox.Show(string.Format("'{0}' is a member of the application", user.UserName);
}
VGMembershipUser Class | Novalys.VisualGuard.Security.Membership Namespace