Load a XmlElement object from an XmlNode.

Namespace:  Bespoke.Common
Assembly:  Bespoke.Common (in Bespoke.Common.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

C#
public static T Load<T>(
	XmlNode elementNode
)
where T : XmlElementBase
Visual Basic (Declaration)
Public Shared Function Load(Of T As XmlElementBase) ( _
	elementNode As XmlNode _
) As T
Visual C++
public:
generic<typename T>
where T : XmlElementBase
static T Load(
	XmlNode^ elementNode
)

Parameters

elementNode
Type: System.Xml..::.XmlNode
The name of the Xml node storing the SceneElement.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Bespoke.Common.XmlElementBase.Load``1(System.Xml.XmlNode)"]

Return Value

The newly deserialzied XmlElement object.

See Also