Class DataProviderImportExceptionEventArgs
Provides additional data for the OnImportException(DataProviderImportExceptionEventArgs) event.
Inheritance
Namespace: Telerik.Windows.Documents.FormatProviders
Assembly: Telerik.Windows.Documents.dll
Syntax
public class DataProviderImportExceptionEventArgs : EventArgs
Constructors
DataProviderImportExceptionEventArgs(Exception, RadDocument)
Initializes a new instance of the DataProviderImportExceptionEventArgs class.
Declaration
public DataProviderImportExceptionEventArgs(Exception exception, RadDocument documentToLoad)
Parameters
System.Exception
exception
The exception. |
RadDocument
documentToLoad
The document to load. |
Properties
DocumentToLoad
Gets or sets a document to be loaded when an exception is thrown.
Declaration
public RadDocument DocumentToLoad { get; set; }
Property Value
RadDocument
The document to load. |
Exception
Gets the exception that occured.
Declaration
public Exception Exception { get; }
Property Value
System.Exception
The exception. |