Returns a boolean value indicating whether the user is a member of an application different from the current application

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 bool IsMemberOfAnotherApplication { get; }
Visual Basic
Public ReadOnly Property IsMemberOfAnotherApplication As Boolean
	Get

Return Value

Type: Boolean
true when the user is a member of another application or is member of a shared role. False otherwise.

Remarks

A user is a member of an application when this user is a member of a role of another application or a member of a shared role.

You can use the property ApplicationId to determine the application for which the VGMembershipUser was created.

Examples

The following code show how to test if a user is a member of an application different from the current application:
Visual Basic Copy imageCopy
If user.IsMemberOfAnotherApplication Then
    MessageBox.Show(string.Format("'{0}' is a member of another application", user.UserName)
End If
C# Copy imageCopy
if (user.IsMemberOfAnotherApplication)
{
    MessageBox.Show(string.Format("'{0}' is a member of another application", user.UserName);
}

See Also