XmlUtilgetPseudoAttribute Method |
Return the value of a pseudo XML attribute from a string. A pseudo attribute
has the same syntax as an XML element attribute but is not from an element.
For example, the xml-stylesheet processing instruction has pseudo attributes.
Namespace: DXMLBase.XmlAssembly: DXMLBase (in DXMLBase.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static string getPseudoAttribute(
string data,
string attrName
)
Public Shared Function getPseudoAttribute (
data As String,
attrName As String
) As String
public:
static String^ getPseudoAttribute(
String^ data,
String^ attrName
)
static member getPseudoAttribute :
data : string *
attrName : string -> string
Parameters
- data
- Type: SystemString
The data to parse for the attribute value - attrName
- Type: SystemString
[Missing <param name="attrName"/> documentation for "M:DXMLBase.Xml.XmlUtil.getPseudoAttribute(System.String,System.String)"]
Return Value
Type:
StringThe name of the pseudo attribute
See Also