DispatchRuntime.PrincipalPermissionMode Property

Definition

Gets or sets a value that specifies how the CurrentPrincipal property is set.

public:
 property System::ServiceModel::Description::PrincipalPermissionMode PrincipalPermissionMode { System::ServiceModel::Description::PrincipalPermissionMode get(); void set(System::ServiceModel::Description::PrincipalPermissionMode value); };
public System.ServiceModel.Description.PrincipalPermissionMode PrincipalPermissionMode { get; set; }
member this.PrincipalPermissionMode : System.ServiceModel.Description.PrincipalPermissionMode with get, set
Public Property PrincipalPermissionMode As PrincipalPermissionMode

Property Value

One of the PrincipalPermissionMode values; the default is UseWindowsGroups.

Remarks

When the PrincipalPermissionMode is None, the CurrentPrincipal property is not set.

When the value is UseWindowsGroups the CurrentPrincipal property is populated with a WindowsPrincipal based on the user credentials of the incoming message.

When the value is UseAspNetRoles the CurrentPrincipal property is populated with an IPrincipal object based on ASP.NET role information.

When the value is Custom the CurrentPrincipal property is populated by a custom IAuthorizationPolicy implementation.

Applies to