XpsWriterException Constructors

Definition

Initializes a new instance of the XpsWriterException class.

Overloads

XpsWriterException()

Initializes a new instance of the XpsWriterException class.

XpsWriterException(String)

Initializes a new instance of the XpsWriterException class that provides a specific error condition.

XpsWriterException(SerializationInfo, StreamingContext)

Initializes a new instance of the XpsWriterException class that provides specific SerializationInfo and StreamingContext. This constructor is protected.

XpsWriterException(String, Exception)

Initializes a new instance of the XpsWriterException class that provides a specific error condition and includes the cause of the exception.

XpsWriterException()

Initializes a new instance of the XpsWriterException class.

public:
 XpsWriterException();
public XpsWriterException ();
Public Sub New ()

Applies to

XpsWriterException(String)

Initializes a new instance of the XpsWriterException class that provides a specific error condition.

public:
 XpsWriterException(System::String ^ message);
public XpsWriterException (string message);
new System.Windows.Xps.XpsWriterException : string -> System.Windows.Xps.XpsWriterException
Public Sub New (message As String)

Parameters

message
String

A String that describes the error condition.

Applies to

XpsWriterException(SerializationInfo, StreamingContext)

Initializes a new instance of the XpsWriterException class that provides specific SerializationInfo and StreamingContext. This constructor is protected.

protected:
 XpsWriterException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XpsWriterException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Windows.Xps.XpsWriterException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Windows.Xps.XpsWriterException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The data that is required to serialize or deserialize an object.

context
StreamingContext

The context, which includes source and destination, of the serialized stream.

Applies to

XpsWriterException(String, Exception)

Initializes a new instance of the XpsWriterException class that provides a specific error condition and includes the cause of the exception.

public:
 XpsWriterException(System::String ^ message, Exception ^ innerException);
public XpsWriterException (string message, Exception innerException);
new System.Windows.Xps.XpsWriterException : string * Exception -> System.Windows.Xps.XpsWriterException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

A String that describes the error condition.

innerException
Exception

The underlying error that caused the XpsWriterException.

Applies to