FileShare.cs 564 B

12345678910111213141516171819202122232425262728
  1. // FileShare.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: Fri, 7 Sep 2001 16:32:26 UTC
  7. // Source file: AllTypes.xml
  8. // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
  9. //
  10. // (C) 2001 Ximian, Inc. http://www.ximian.com
  11. namespace System.IO {
  12. /// <summary>
  13. /// </summary>
  14. [Flags]
  15. public enum FileShare : int {
  16. None = 0,
  17. Read = 1,
  18. Write = 2,
  19. ReadWrite = 3,
  20. Inheritable = 16,
  21. } // FileShare
  22. } // System.IO