PolicyStatement Constructors
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.
Initializes a new instance of the PolicyStatement class.
Overloads
| Name | Description |
|---|---|
| PolicyStatement(PermissionSet) |
Initializes a new instance of the PolicyStatement class with the specified PermissionSet. |
| PolicyStatement(PermissionSet, PolicyStatementAttribute) |
Initializes a new instance of the PolicyStatement class with the specified PermissionSet and attributes. |
PolicyStatement(PermissionSet)
Initializes a new instance of the PolicyStatement class with the specified PermissionSet.
public:
PolicyStatement(System::Security::PermissionSet ^ permSet);
public PolicyStatement(System.Security.PermissionSet permSet);
new System.Security.Policy.PolicyStatement : System.Security.PermissionSet -> System.Security.Policy.PolicyStatement
Public Sub New (permSet As PermissionSet)
Parameters
- permSet
- PermissionSet
The PermissionSet with which to initialize the new instance.
Remarks
Caution
Code Access Security (CAS) has been deprecated across all versions of .NET Framework and .NET. Recent versions of .NET do not honor CAS annotations and produce errors if CAS-related APIs are used. Developers should seek alternative means of accomplishing security tasks.
Applies to
PolicyStatement(PermissionSet, PolicyStatementAttribute)
Initializes a new instance of the PolicyStatement class with the specified PermissionSet and attributes.
public:
PolicyStatement(System::Security::PermissionSet ^ permSet, System::Security::Policy::PolicyStatementAttribute attributes);
public PolicyStatement(System.Security.PermissionSet permSet, System.Security.Policy.PolicyStatementAttribute attributes);
new System.Security.Policy.PolicyStatement : System.Security.PermissionSet * System.Security.Policy.PolicyStatementAttribute -> System.Security.Policy.PolicyStatement
Public Sub New (permSet As PermissionSet, attributes As PolicyStatementAttribute)
Parameters
- permSet
- PermissionSet
The PermissionSet with which to initialize the new instance.
- attributes
- PolicyStatementAttribute
A bitwise combination of the PolicyStatementAttribute values.
Remarks
Caution
Code Access Security (CAS) has been deprecated across all versions of .NET Framework and .NET. Recent versions of .NET do not honor CAS annotations and produce errors if CAS-related APIs are used. Developers should seek alternative means of accomplishing security tasks.