using System;
using System.Runtime.InteropServices;
namespace System.Security.Permissions
{
/// Specifies the type of clipboard access that is allowed to the calling code.
// Token: 0x02000573 RID: 1395
[ComVisible(true)]
[Serializable]
public enum UIPermissionClipboard
{
/// Clipboard cannot be used.
// Token: 0x040014F3 RID: 5363
NoClipboard,
/// The ability to put data on the clipboard (Copy, Cut) is unrestricted. Intrinsic controls that accept Paste, such as text box, can accept the clipboard data, but user controls that must programmatically read the clipboard cannot.
// Token: 0x040014F4 RID: 5364
OwnClipboard,
/// Clipboard can be used without restriction.
// Token: 0x040014F5 RID: 5365
AllClipboard
}
}