Edit

Share via


XamlXmlWriterException Constructors

Definition

Initializes a new instance of the XamlXmlWriterException class.

Overloads

XamlXmlWriterException()

Initializes a new instance of the XamlXmlWriterException class with a system-supplied message that describes the error.

XamlXmlWriterException(String)

Initializes a new instance of the XamlXmlWriterException class with a specified message that describes the error.

XamlXmlWriterException(SerializationInfo, StreamingContext)

Initializes a new instance of the XamlXmlWriterException class with serialized data.

XamlXmlWriterException(String, Exception)

Initializes a new instance of the XamlXmlWriterException class with a specified error message and a reference to the inner exception that is the cause of this exception.

XamlXmlWriterException()

Initializes a new instance of the XamlXmlWriterException class with a system-supplied message that describes the error.

public XamlXmlWriterException ();

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 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

XamlXmlWriterException(String)

Initializes a new instance of the XamlXmlWriterException class with a specified message that describes the error.

public XamlXmlWriterException (string message);

Parameters

message
String

The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 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

XamlXmlWriterException(SerializationInfo, StreamingContext)

Initializes a new instance of the XamlXmlWriterException class with serialized data.

protected XamlXmlWriterException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);

Parameters

info
SerializationInfo

The object that holds the serialized object data.

context
StreamingContext

The contextual information about the source or destination.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 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

XamlXmlWriterException(String, Exception)

Initializes a new instance of the XamlXmlWriterException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public XamlXmlWriterException (string message, Exception innerException);

Parameters

message
String

The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

innerException
Exception

The exception that is the cause of the current exception. If the innerException parameter is not null, the current exception is raised in a catch block that handles the inner exception.

Remarks

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor, or null if the InnerException property does not supply the inner exception value to the constructor.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 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