TrackingProfileDeserializationException.ValidationEventArgs Property

Definition

Gets a list that contains validation warnings and errors associated with this exception.

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)

Property Value

A IList of ValidationEventArgs objects that contains validation warnings and errors associated with this exception. The default is an empty list.

Remarks

The TrackingProfileSerializer uses an XmlReader to deserialize an XML document into a TrackingProfile. The TrackingProfileSerializer collects validation errors and warnings emitted by the XmlReader. At certain points during deserialization, the TrackingProfileSerializer determines whether the XmlReader has encountered any validation errors, and, if it has, the TrackingProfileSerializer adds these warnings and errors to ValidationEventArgs and throws a TrackingProfileDeserializationException. Not all exceptions of this class will have ValidationEventArgs set.

Applies to