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