XmlValidatorIsXmlStringValid Method |
Validates the XML string against a schema.
Namespace:
ASAP.NRP.Core.Tools
Assembly:
NRP (in NRP.dll) Version: 3.49.0+539d3dcf73518163e952c8abb92256bf56ba5029
Syntaxpublic static bool IsXmlStringValid(
string xmlString,
string schemaFileName
)
Public Shared Function IsXmlStringValid (
xmlString As String,
schemaFileName As String
) As Boolean
public:
static bool IsXmlStringValid(
String^ xmlString,
String^ schemaFileName
)
static member IsXmlStringValid :
xmlString : string *
schemaFileName : string -> bool
Parameters
- xmlString
- Type: SystemString
The XML string to validate. - schemaFileName
- Type: SystemString
The schema file to validate the XML against.
Return Value
Type:
BooleanTrue if the XML is valid, false otherwise.
RemarksAll error messages are sent to the ErrorLogger.Log() method.
See Also