namespace DSInternals.Common.Interop { /// /// The scope of the enumeration. /// /// http://msdn.microsoft.com/library/windows/desktop/aa385353.aspx internal enum NetResourceScope : uint { /// /// Enumerate currently connected resources. The dwUsage member cannot be specified. /// Connected = 0x00000001U, /// /// Enumerate all resources on the network. The dwUsage member is specified. /// Globalnet = 0x00000002U, /// /// Enumerate remembered (persistent) connections. The dwUsage member cannot be specified. /// Remembered = 0x00000003U, Recent = 0x00000004U, Context = 0x00000005U } }