User.InternalPrincipal Property

Definition

Gets or sets the principal object representing the current user.

protected:
 virtual property System::Security::Principal::IPrincipal ^ InternalPrincipal { System::Security::Principal::IPrincipal ^ get(); void set(System::Security::Principal::IPrincipal ^ value); };
protected virtual System.Security.Principal.IPrincipal InternalPrincipal { get; set; }
member this.InternalPrincipal : System.Security.Principal.IPrincipal with get, set
Protected Overridable Property InternalPrincipal As IPrincipal

Property Value

An IPrincipal object representing the current user.

Remarks

In the User object, this property wraps the Thread.CurrentPrincipal property. Override this method in a derived class to provide different behavior. For example, the WebUser.InternalPrincipal property overrides this property.

Applies to

See also