Enum GuidFormats
Specifies allowed GUID formats in parsing related methods.
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
[Flags]
public enum GuidFormats
Fields
Name | Description |
---|---|
Any | Specified any of the supported GUID formats (N,D,B,P,X). |
B | Specified the brace format (B) which consist of 32 digits separated by hyphens, enclosed in brackets, eg. {12345678-1234-1234-1234-123456789abc}. |
D | Specified the digit format (D) which consist of 32 digits separated by hyphens, eg. 12345678-1234-1234-1234-123456789abc. |
N | Specified the number format (N) which consist of 32 digits, eg. 12345678123412341234123456789abc. |
P | Specified the parenthesis format (P) which consist of 32 digits separated by hyphens, enclosed in parentheses, eg. (12345678-1234-1234-1234-123456789abc). |
X | Specified four hexadecimal values enclosed in braces (X) where the fourth value is a subset of eight hexadecimal values that is also enclosed in braces. |