| SecurIdSdtidTokenFindXmlBase64Value Method |
Search the XML of the current instance for a node with a given name and containing a base-64 encoded value, and decode the value into an array of bytes.
Namespace:
SamoyedSoftware.ursa
Assembly:
SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax protected byte[] FindXmlBase64Value(
string name
)
Protected Function FindXmlBase64Value (
name As String
) As Byte()
protected:
array<unsigned char>^ FindXmlBase64Value(
String^ name
)
member FindXmlBase64Value :
name : string -> byte[]
Parameters
- name
- Type: SystemString
The name of the node to find.
Return Value
Type:
ByteThe node's value decoded into an array of bytes. If the node is not found, or the node's value is not a valid base-64 string, an empty array is returned.
See Also