Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

80 wiersze
3.7 KiB

  1. /* Copyright (C) 2008-2016 Peter Palotas, Jeffrey Jangli, Alexandr Normuradov
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to deal
  5. * in the Software without restriction, including without limitation the rights
  6. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. * copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. * THE SOFTWARE.
  20. */
  21. using System;
  22. using System.Diagnostics.CodeAnalysis;
  23. namespace Alphaleonis.Win32.Network
  24. {
  25. /// <summary>The type of the shared resource.</summary>
  26. /// <remarks>MSDN: 2.2.2.4 Share Types
  27. /// http://msdn.microsoft.com/en-us/library/cc247110.aspx
  28. /// </remarks>
  29. [SuppressMessage("Microsoft.Naming", "CA1714:FlagsEnumsShouldHavePluralNames")]
  30. [SuppressMessage("Microsoft.Usage", "CA2217:DoNotMarkEnumsWithFlags")]
  31. [SuppressMessage("Microsoft.Design", "CA1008:EnumsShouldHaveZeroValue")]
  32. [Flags] // Needs Flags attribute to combine attributes.
  33. public enum ShareType
  34. {
  35. /// <summary>Disk drive.</summary>
  36. DiskTree = 0,
  37. /// <summary>Print queue.</summary>
  38. PrintQueue = 1,
  39. /// <summary>Communication device.</summary>
  40. Device = 2,
  41. /// <summary>Interprocess communication (IPC).</summary>
  42. [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Ipc")]
  43. Ipc = 3,
  44. /// <summary>A cluster share.</summary>
  45. [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "Fs")]
  46. [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Fs")]
  47. ClusterFs = 33554432,
  48. /// <summary>A Scale-Out cluster share.</summary>
  49. [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "Fs")]
  50. [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Fs")]
  51. ClusterSoFs = 67108864,
  52. /// <summary>A DFS share in a cluster.</summary>
  53. [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Dfs")]
  54. ClusterDfs = 134217728,
  55. // The following table of values can be OR'd with the values in the preceding table to further specify the characteristics of a shared resource.
  56. // It is possible to use both values in this OR operation.
  57. /// <summary>Special share reserved for interprocess communication (IPC$) or remote administration of the server (ADMIN$).
  58. /// <para>Can also refer to administrative shares such as C$, D$, E$, and so forth.</para>
  59. /// </summary>
  60. Special = -2147483648,
  61. /// <summary>A temporary share that is not persisted for creation each time the file server initializes.</summary>
  62. Temporary = 1073741824,
  63. /// <summary>Retriev all known <see cref="ShareType"/></summary>
  64. All = DiskTree | PrintQueue | Device | Ipc | ClusterFs | ClusterSoFs | ClusterDfs | Special | Temporary
  65. }
  66. }