UIPermission Constructor (UIPermissionWindow, UIPermissionClipboard)

 

Initializes a new instance of the UIPermission class with the specified permissions for windows and the Clipboard.

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

public:
UIPermission(
	UIPermissionWindow windowFlag,
	UIPermissionClipboard clipboardFlag
)

Parameters

windowFlag
Type: System.Security.Permissions::UIPermissionWindow

One of the enumeration values.

clipboardFlag
Type: System.Security.Permissions::UIPermissionClipboard

One of the enumeration values.

Exception Condition
ArgumentException

The windowFlag parameter is not a valid UIPermissionWindow value.

-or-

The clipboardFlag parameter is not a valid UIPermissionClipboard value.

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

UIPermission ^ uiPerm1 = gcnew UIPermission(UIPermissionWindow::SafeTopLevelWindows,UIPermissionClipboard::OwnClipboard);

.NET Framework
Available since 1.1
Return to top
Show: