XmlSchemaValidator.ValidateWhitespace Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Validates whether white space is allowed in the current element context, and accumulates the white space for validation if the current element has simple content.
Overloads
ValidateWhitespace(String) |
Validates whether the white space in the |
ValidateWhitespace(XmlValueGetter) |
Validates whether the white space returned by the XmlValueGetter object specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content. |
ValidateWhitespace(String)
- Source:
- XmlSchemaValidator.cs
- Source:
- XmlSchemaValidator.cs
- Source:
- XmlSchemaValidator.cs
Validates whether the white space in the string
specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content.
public:
void ValidateWhitespace(System::String ^ elementValue);
public void ValidateWhitespace (string elementValue);
member this.ValidateWhitespace : string -> unit
Public Sub ValidateWhitespace (elementValue As String)
Parameters
- elementValue
- String
A white space string
to validate in the current element context.
Exceptions
White space is not allowed in the current element context.
The ValidateWhitespace method was not called in the correct sequence. For example, if the ValidateWhitespace method is called after calling ValidateAttribute.
Applies to
ValidateWhitespace(XmlValueGetter)
- Source:
- XmlSchemaValidator.cs
- Source:
- XmlSchemaValidator.cs
- Source:
- XmlSchemaValidator.cs
Validates whether the white space returned by the XmlValueGetter object specified is allowed in the current element context, and accumulates the white space for validation if the current element has simple content.
public:
void ValidateWhitespace(System::Xml::Schema::XmlValueGetter ^ elementValue);
public void ValidateWhitespace (System.Xml.Schema.XmlValueGetter elementValue);
member this.ValidateWhitespace : System.Xml.Schema.XmlValueGetter -> unit
Public Sub ValidateWhitespace (elementValue As XmlValueGetter)
Parameters
- elementValue
- XmlValueGetter
An XmlValueGetterdelegate
used to pass the white space value as a Common Language Runtime (CLR) type compatible with the XML Schema Definition Language (XSD) type of the attribute.
Exceptions
White space is not allowed in the current element context.
The ValidateWhitespace method was not called in the correct sequence. For example, if the ValidateWhitespace method is called after calling ValidateAttribute.