TrackingProfileDeserializationException.ValidationEventArgs 属性

定义

获取一个列表,该列表包含与此异常关联的验证警告和错误。

public:
 property System::Collections::Generic::IList<System::Xml::Schema::ValidationEventArgs ^> ^ ValidationEventArgs { System::Collections::Generic::IList<System::Xml::Schema::ValidationEventArgs ^> ^ get(); };
public System.Collections.Generic.IList<System.Xml.Schema.ValidationEventArgs> ValidationEventArgs { get; }
member this.ValidationEventArgs : System.Collections.Generic.IList<System.Xml.Schema.ValidationEventArgs>
Public ReadOnly Property ValidationEventArgs As IList(Of ValidationEventArgs)

属性值

IList<ValidationEventArgs>

IList 对象的 ValidationEventArgs,其中包含与此异常关联的验证警告和错误。 默认为空列表。

注解

TrackingProfileSerializer 使用 XmlReader 将 XML 文档反序列化为 TrackingProfileTrackingProfileSerializer 收集 XmlReader 发出的验证错误和警告。 在反序列化过程中的某些点,TrackingProfileSerializer 将确定 XmlReader 是否遇到了任何验证错误,并且,如果遇到了验证错误,TrackingProfileSerializer 会将这些警告和错误添加到 ValidationEventArgs,并引发 TrackingProfileDeserializationException。 并非此类的所有异常都将设置 ValidationEventArgs

适用于