XamlParseException Constructor (String^, Int32, Int32, Exception^)

 

Initializes a new instance of the XamlParseException class, using the specified exception message, inner exception, line number, and position in the line.

Namespace:   System.Windows.Markup
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
XamlParseException(
	String^ message,
	int lineNumber,
	int linePosition,
	Exception^ innerException
)

Parameters

message
Type: System::String^

The exception message.

lineNumber
Type: System::Int32

The line number where the exception occurred.

linePosition
Type: System::Int32

The position in the line at which the exception occurred.

innerException
Type: System::Exception^

The initial exception that occurred.

An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception. 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.

.NET Framework
Available since 3.0
Return to top
Show: