Click or drag to resize

mxObjectCodecAfterDecode Method

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Hook for subclassers to Receive-process the object after decoding. This implementation returns the given object without any changes. The return value of this method is returned to the decoder from decode.

Namespace:  imbSCI.Graph.MXGraph.io
Assembly:  imbSCI.Graph (in imbSCI.Graph.dll) Version: 0.3.70.
Syntax
C#
public virtual Object AfterDecode(
	mxCodec dec,
	XmlNode node,
	Object obj
)
Request Example View Source

Parameters

dec
Type: imbSCI.Graph.MXGraph.iomxCodec
Codec that controls the decoding process.
node
Type: System.XmlXmlNode
XML node to be decoded.
obj
Type: SystemObject
Object that represents the default decoding.

Return Value

Type: Object
Returns the result of the decoding process.
See Also