AppDomainManager.HostSecurityManager Property

Definition

Gets the host security manager that participates in security decisions for the application domain.

public virtual System.Security.HostSecurityManager HostSecurityManager { get; }

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;
    }
}

Remarks

This property allows a host to provide a HostSecurityManager to participate in the security decisions for the application domain.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1