User.InternalPrincipal Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.