Parse the XML representation of an instance

Namespace:  NHibernate.Type
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public MustOverride Function FromString ( _
	xml As String _
) As Object
C#
public abstract Object FromString(
	string xml
)
Visual C++
public:
virtual Object^ FromString(
	String^ xml
) abstract
JavaScript
function fromString(xml);

Parameters

xml
Type: System..::.String

Return Value

an instance of the type

Implements

IType..::.FromString(String)

See Also