PrincipalPermission.Demand Method

Definition

Determines at run time whether the current principal matches the principal specified by the current permission.

public:
 virtual void Demand();
public void Demand ();
abstract member Demand : unit -> unit
override this.Demand : unit -> unit
Public Sub Demand ()

Implements

Exceptions

The current principal does not pass the security check for the principal specified by the current permission.

-or-

The current IPrincipal is null.

Remarks

If no SecurityException is raised, Demand succeeds.

This method acts against the principal attached to the calling thread.

Important

Prior to calling the Demand method, it is necessary to set the current application domain's principal policy to the enumeration value WindowsPrincipal. By default the principal policy is set to UnauthenticatedPrincipal. If you do not set the principal policy to WindowsPrincipal, a demand for principal permission will fail. The following code should be executed before the demand for principal permission occurs:

AppDomain.CurrentDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal).

Applies to