NSSearchPathDomain Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An enumeration of values specifying search path domain constants for use with NSSearchPathDirectory.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum NSSearchPathDomain
type NSSearchPathDomain =
- Inheritance
-
NSSearchPathDomain
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Do not return anything. |
User | 1 | Return user directories. |
Local | 2 | Return local directories. |
Network | 4 | Return network directories. |
System | 8 | Return the system directories. |
All | 65535 | Return items for all domains. |
Remarks
The domain is used to specify the kind of directory you want to get from the GetUrls(NSSearchPathDirectory, NSSearchPathDomain) method.