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
nodeMarkupElement
UnsupportedNodeException(MarkupElement, string)
Creates an unsupported node exception.
public UnsupportedNodeException(MarkupElement node, string message)
Parameters
nodeMarkupElementThe node that is not supported.
messagestringThe exception's error message.
UnsupportedNodeException(MarkupElement, string, Exception)
Creates an unsupported node exception.
public UnsupportedNodeException(MarkupElement node, string message, Exception inner)
Parameters
nodeMarkupElementThe node that is not supported.
messagestringThe exception's error message.
innerExceptionAn inner exception.
UnsupportedNodeException(SerializationInfo, StreamingContext)
Deserializes an unsupported node exception.
protected UnsupportedNodeException(SerializationInfo info, StreamingContext context)
Parameters
infoSerializationInfoThe serialization info.
contextStreamingContextA streaming context.
Properties
Node
Gets the node that triggered this exception.
public MarkupElement Node { get; }
Property Value
- MarkupElement
The unsupported node.