XpsSerializationException Constructors

Definition

Initializes a new instance of the XpsSerializationException class.

Overloads

XpsSerializationException()

Initializes a new instance of the XpsSerializationException class.

XpsSerializationException(String)

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

XpsSerializationException(SerializationInfo, StreamingContext)

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

XpsSerializationException(String, Exception)

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

XpsSerializationException()

Initializes a new instance of the XpsSerializationException class.

C#
public XpsSerializationException();

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

XpsSerializationException(String)

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

C#
public XpsSerializationException(string message);

Parameters

message
String

A String that describes the error condition.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

XpsSerializationException(SerializationInfo, StreamingContext)

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

C#
protected XpsSerializationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);

Parameters

info
SerializationInfo

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

context
StreamingContext

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

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

XpsSerializationException(String, Exception)

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

C#
public XpsSerializationException(string message, Exception innerException);

Parameters

message
String

A String that describes the error condition.

innerException
Exception

The underlying error that caused the exception.

Remarks

If the innerException parameter is not null (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10