HostProtectionAttribute Constructors

Definition

Initializes a new instance of the HostProtectionAttribute class.

Overloads

HostProtectionAttribute()

Initializes a new instance of the HostProtectionAttribute class with default values.

HostProtectionAttribute(SecurityAction)

Initializes a new instance of the HostProtectionAttribute class with the specified SecurityAction value.

HostProtectionAttribute()

Source:
HostProtectionAttribute.cs
Source:
HostProtectionAttribute.cs
Source:
HostProtectionAttribute.cs

Initializes a new instance of the HostProtectionAttribute class with default values.

public:
 HostProtectionAttribute();
public HostProtectionAttribute ();
Public Sub New ()

Remarks

This constructor creates a HostProtectionAttribute with all Boolean properties set to false.

Applies to

HostProtectionAttribute(SecurityAction)

Source:
HostProtectionAttribute.cs
Source:
HostProtectionAttribute.cs
Source:
HostProtectionAttribute.cs

Initializes a new instance of the HostProtectionAttribute class with the specified SecurityAction value.

public:
 HostProtectionAttribute(System::Security::Permissions::SecurityAction action);
public HostProtectionAttribute (System.Security.Permissions.SecurityAction action);
new System.Security.Permissions.HostProtectionAttribute : System.Security.Permissions.SecurityAction -> System.Security.Permissions.HostProtectionAttribute
Public Sub New (action As SecurityAction)

Parameters

action
SecurityAction

One of the SecurityAction values.

Exceptions

action is not LinkDemand.

Remarks

This constructor should not be used. It is intended for infrastructure use.

Applies to