IsolatedStorageContainment.cs 774 B

123456789101112131415161718192021222324252627
  1. // IsolatedStorageContainment.cs
  2. //
  3. // This code was automatically generated from
  4. // ECMA CLI XML Library Specification.
  5. // Generator: libgen.xsl [1.0; (C) Sergey Chaban ([email protected])]
  6. // Created: Wed, 5 Sep 2001 06:41:57 UTC
  7. // Source file: all.xml
  8. // URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
  9. //
  10. // (C) 2001 Ximian, Inc. http://www.ximian.com
  11. namespace System.Security.Permissions {
  12. [Serializable]
  13. public enum IsolatedStorageContainment
  14. {
  15. None = 0x00,
  16. DomainIsolationByUser = 0x10,
  17. AssemblyIsolationByUser = 0x20,
  18. DomainIsolationByRoamingUser = 0x50,
  19. AssemblyIsolationByRoamingUser = 0x60,
  20. AdministerIsolatedStorageByUser = 0x70,
  21. UnrestrictedIsolatedStorage = 0xF0,
  22. };
  23. } // System.Security.Permissions