| SecurIdSdtidTokenFindXmlStringValue Method (String, String) |
Search the XML of the current instance for a node with a given name and return the node's value, or a default value if the node is not found.
Namespace:
SamoyedSoftware.ursa
Assembly:
SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax protected string FindXmlStringValue(
string name,
string defaultValue
)
Protected Function FindXmlStringValue (
name As String,
defaultValue As String
) As String
protected:
String^ FindXmlStringValue(
String^ name,
String^ defaultValue
)
member FindXmlStringValue :
name : string *
defaultValue : string -> string
Parameters
- name
- Type: SystemString
The name of the node to find. - defaultValue
- Type: SystemString
The default value to return, if the node is not found.
Return Value
Type:
StringThe node's value, if found; the value of
defaultValue otherwise.
See Also