XmlSchemaValidator.ValidateWhitespace 方法

定义

验证当前元素上下文中是否允许空白,如果当前元素具有简单内容,则累积空白以进行验证。

重载

ValidateWhitespace(String)

验证当前元素上下文中是否允许指定的 string 中的空白,如果当前元素具有简单内容,则累积空白以进行验证。

ValidateWhitespace(XmlValueGetter)

验证当前元素上下文中是否允许指定的 XmlValueGetter 对象返回的空白,如果当前元素具有简单内容,则累积空白以进行验证。

ValidateWhitespace(String)

Source:
XmlSchemaValidator.cs
Source:
XmlSchemaValidator.cs
Source:
XmlSchemaValidator.cs

验证当前元素上下文中是否允许指定的 string 中的空白,如果当前元素具有简单内容,则累积空白以进行验证。

public:
 void ValidateWhitespace(System::String ^ elementValue);
public void ValidateWhitespace (string elementValue);
member this.ValidateWhitespace : string -> unit
Public Sub ValidateWhitespace (elementValue As String)

参数

elementValue
String

一个空白 string,要在当前元素上下文中对其进行验证。

例外

当前元素上下文中不允许空白。

未按正确的顺序调用 ValidateWhitespace 方法。 例如,在调用 ValidateWhitespace 之后调用 ValidateAttribute 方法。

适用于

ValidateWhitespace(XmlValueGetter)

Source:
XmlSchemaValidator.cs
Source:
XmlSchemaValidator.cs
Source:
XmlSchemaValidator.cs

验证当前元素上下文中是否允许指定的 XmlValueGetter 对象返回的空白,如果当前元素具有简单内容,则累积空白以进行验证。

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)

参数

elementValue
XmlValueGetter

一个 XmlValueGetterdelegate,用于将空白值作为与该属性的 XML 架构定义语言 (XSD) 类型兼容的公共语言运行时 (CLR) 类型进行传递。

例外

当前元素上下文中不允许空白。

未按正确的顺序调用 ValidateWhitespace 方法。 例如,在调用 ValidateWhitespace 之后调用 ValidateAttribute 方法。

另请参阅

适用于