Class UnsupportedNodeException

Namespace
Pixie
Assembly
Pixie.dll

An exception that is thrown when a markup node is encountered that is not supported directly and does not specify a fallback.

public class UnsupportedNodeException : PixieException, ISerializable
Inheritance
UnsupportedNodeException
Implements
Inherited Members

Constructors

UnsupportedNodeException(MarkupElement)

Creates an unsupported node exception.

public UnsupportedNodeException(MarkupElement node)

Parameters

node MarkupElement

UnsupportedNodeException(MarkupElement, string)

Creates an unsupported node exception.

public UnsupportedNodeException(MarkupElement node, string message)

Parameters

node MarkupElement

The node that is not supported.

message string

The exception's error message.

UnsupportedNodeException(MarkupElement, string, Exception)

Creates an unsupported node exception.

public UnsupportedNodeException(MarkupElement node, string message, Exception inner)

Parameters

node MarkupElement

The node that is not supported.

message string

The exception's error message.

inner Exception

An inner exception.

UnsupportedNodeException(SerializationInfo, StreamingContext)

Deserializes an unsupported node exception.

protected UnsupportedNodeException(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo

The serialization info.

context StreamingContext

A streaming context.

Properties

Node

Gets the node that triggered this exception.

public MarkupElement Node { get; }

Property Value

MarkupElement

The unsupported node.