Enum PathIs
An enumeration of the ways in which the string supplied to the PathAttribute attribute can be used to create a full path.
Namespace: OpenCollar.Extensions.Configuration
Assembly: OpenCollar.Extensions.Configuration.dll
Syntax
public enum PathIs
Remarks
The following UML has been generated directly from the source code using
Jebbs PlantUML .
Fields
| Name | Description |
|---|---|
| Absolute | The path is treated as a root and any previous context is ignored. |
| Relative | The path is treated as a suffix to be applied (as part of colon delimited list) to the existing path context. |
| Root | Obsolete. The path is treated as a root and any previous context is ignored. |
| Suffix | Obsolete. The path is treated as a suffix to be applied (as part of colon delimited list) to the existing path context. |
| Unknown | The usage of the path is unknown or undefined. Use of this value will usually result in an error; it is provided to as sentinel to detect accidental usages. |