TrackingProfileDeserializationException.ValidationEventArgs 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个列表,该列表包含与此异常关联的验证警告和错误。
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,其中包含与此异常关联的验证警告和错误。 默认为空列表。
注解
TrackingProfileSerializer 使用 XmlReader 将 XML 文档反序列化为 TrackingProfile。 TrackingProfileSerializer 收集 XmlReader 发出的验证错误和警告。 在反序列化过程中的某些点,TrackingProfileSerializer 将确定 XmlReader 是否遇到了任何验证错误,并且,如果遇到了验证错误,TrackingProfileSerializer 会将这些警告和错误添加到 ValidationEventArgs,并引发 TrackingProfileDeserializationException。 并非此类的所有异常都将设置 ValidationEventArgs。