Enum GuidFormats
- Namespace
- Cuemon
- Assembly
- Cuemon.Core.dll
Specifies allowed GUID formats in parsing related methods.
[Flags]
public enum GuidFormats
Fields
Any = 31
Specified any of the supported GUID formats (N,D,B,P,X).
B = 4
Specified the brace format (B) which consist of 32 digits separated by hyphens, enclosed in brackets, eg. {12345678-1234-1234-1234-123456789abc}.
D = 2
Specified the digit format (D) which consist of 32 digits separated by hyphens, eg. 12345678-1234-1234-1234-123456789abc.
N = 1
Specified the number format (N) which consist of 32 digits, eg. 12345678123412341234123456789abc.
P = 8
Specified the parenthesis format (P) which consist of 32 digits separated by hyphens, enclosed in parentheses, eg. (12345678-1234-1234-1234-123456789abc).
X = 16
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.