Return true if all of the characters in the passed string are valid
XML characters.
Namespace: DXMLBase.XmlAssembly: DXMLBase (in DXMLBase.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static bool isXmlValid(
string str
)
Public Shared Function isXmlValid (
str As String
) As Boolean
public:
static bool isXmlValid(
String^ str
)
static member isXmlValid :
str : string -> bool
Parameters
- str
- Type: SystemString
The string to check.
Return Value
Type:
Booleantrue if all characters are valid XML.
See Also