Parse the data.

Namespace: yWorks.yFiles.Graph.Web
Assembly: yFilesServer (in yFilesServer.dll) Version: 1.8.0.0 (1.8)

Syntax

C#
protected override void ParseData(
	IParseContext context,
	Object parent,
	Object currentObject,
	bool defaultMode,
	XmlNode domNode
)
Visual Basic
Protected Overrides Sub ParseData ( _
	context As IParseContext, _
	parent As Object, _
	currentObject As Object, _
	defaultMode As Boolean, _
	domNode As XmlNode _
)

Parameters

context
Type: IParseContext
The current parse context.
parent
Type: System..::..Object
The current parent element in the parse context.
currentObject
Type: System..::..Object
The current object in the parse context.
defaultMode
Type: System..::..Boolean
Whether default data or real data is read.
domNode
Type: System.Xml..::..XmlNode
The DOM node which is currently being processed.

Remarks

This implementation first tries to retrieve a deserializer from the given context. If the context doesn't return a deserializer for the given xml node, the XmlStyleDeserializer is used. The xml style deserializer will create an XmlStyle<(Of <(<'TModelItem, TStyle>)>)> for the currentObject.

See Also