using System; using System.Runtime.InteropServices; namespace System.Security.Permissions { /// Specifies the type of windows that code is allowed to use. // Token: 0x02000574 RID: 1396 [ComVisible(true)] [Serializable] public enum UIPermissionWindow { /// Users cannot use any windows or user interface events. No user interface can be used. // Token: 0x040014F7 RID: 5367 NoWindows, /// Users can only use for drawing, and can only use user input events for user interface within that subwindow. Examples of are a , common dialog controls, and a control displayed within a browser. // Token: 0x040014F8 RID: 5368 SafeSubWindows, /// Users can only use and for drawing, and can only use user input events for the user interface within those top-level windows and subwindows. // Token: 0x040014F9 RID: 5369 SafeTopLevelWindows, /// Users can use all windows and user input events without restriction. // Token: 0x040014FA RID: 5370 AllWindows } }