Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DispatchRuntime::PrincipalPermissionMode Property

 

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

Namespace:   System.ServiceModel.Dispatcher
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property PrincipalPermissionMode PrincipalPermissionMode {
	PrincipalPermissionMode get();
	void set(PrincipalPermissionMode value);
}

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.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft