UIPermission Constructor (UIPermissionWindow)

 

Initializes a new instance of the UIPermission class with the permissions for windows, and no access to the Clipboard.

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

public:
UIPermission(
	UIPermissionWindow windowFlag
)

Parameters

windowFlag
Type: System.Security.Permissions::UIPermissionWindow

One of the enumeration values.

Exception Condition
ArgumentException

The windowFlag parameter is not a valid UIPermissionWindow value.

To set both the Clipboard and window permissions, use the constructor that takes parameters for both.

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

UIPermission ^ uiPerm1 = gcnew UIPermission(UIPermissionWindow::SafeTopLevelWindows);

.NET Framework
Available since 1.1
Return to top
Show: