Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UIPermission Constructor (PermissionState)

 

Initializes a new instance of the UIPermission class with either fully restricted or unrestricted access, as specified.

Namespace:   System.Security.Permissions
Assembly:  mscorlib (in mscorlib.dll)

public:
UIPermission(
	PermissionState state
)

Parameters

state
Type: System.Security.Permissions::PermissionState

One of the enumeration values.

Exception Condition
ArgumentException

The state parameter is not a valid PermissionState.

This constructor creates either the fully restricted (None) or the Unrestricted form of the permission.

The following code example shows the use of the UIPermission constructor. This example is part of a larger example provided for the UIPermission class.

UIPermission ^ uiPerm2 = gcnew UIPermission(PermissionState::None);

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft