-
Notifications
You must be signed in to change notification settings - Fork 2
Binary GUID converter
Ryan Newington edited this page Apr 12, 2018
·
1 revision
This transform allows you to convert a binary GUID into a string and vice-versa.
Parameter | Description |
---|---|
Format | Optional. A .NET GUID format string value to use |
The transform accepts binary and string values as an input.
The transform accepts multiple input values, and processes each of them individually
The transform returns a string value when a binary value is provided, and a binary value when a string value is provided
Input value | Format | Output value |
---|---|---|
<binary value> |
N | 00000000000000000000000000000000 |
<binary value> |
D | 00000000-0000-0000-0000-000000000000 |
<binary value> |
B | {00000000-0000-0000-0000-000000000000} |
<binary value> |
P | (00000000-0000-0000-0000-000000000000) |
<binary value> |
X | {0x00000000,0x0000,0x0000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} |
00000000-0000-0000-0000-000000000000 | <binary value> |