| ExtensionMethodsHexDecode Method |
Decode encodedData to a byte array
Namespace:
SanteDB
Assembly:
SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 3.0.481-alpha
Syntax public static byte[] HexDecode(
this string encodedData
)
<ExtensionAttribute>
Public Shared Function HexDecode (
encodedData As String
) As Byte()
public:
[ExtensionAttribute]
static array<unsigned char>^ HexDecode(
String^ encodedData
)
[<ExtensionAttribute>]
static member HexDecode :
encodedData : string -> byte[]
Parameters
- encodedData
- Type: SystemString
[Missing <param name="encodedData"/> documentation for "M:SanteDB.ExtensionMethods.HexDecode(System.String)"]
Return Value
Type:
Byte[Missing <returns> documentation for "M:SanteDB.ExtensionMethods.HexDecode(System.String)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also