XpsWriterException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
- innerException
- Exception
The underlying error that caused the XpsWriterException.