AppDomainManager.HostSecurityManager 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 the host security manager that participates in security decisions for the application domain.
public:
virtual property System::Security::HostSecurityManager ^ HostSecurityManager { System::Security::HostSecurityManager ^ get(); };
public virtual System.Security.HostSecurityManager HostSecurityManager { get; }
member this.HostSecurityManager : System.Security.HostSecurityManager
Public Overridable ReadOnly Property HostSecurityManager As HostSecurityManager
Property Value
The host security manager.
Examples
The following example shows an override of the HostSecurityManager property for a custom application domain manager. This code example is part of a larger example provided for the AppDomainManager class.
public override HostSecurityManager HostSecurityManager
{
get
{
return mySecurityManager;
}
}
Public Overrides ReadOnly Property HostSecurityManager() _
As HostSecurityManager
Get
Return mySecurityManager
End Get
End Property
End Class
Remarks
This property allows a host to provide a HostSecurityManager to participate in the security decisions for the application domain.