Click or drag to resize

IXmlDeserializationInfoGetEnum(String, Type) Method

Reads a named enum value of the given type.

Namespace: Altaxo.Serialization.Xml
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
Object GetEnum(
	string name,
	Type type
)

Parameters

name  String
Element name.
type  Type
Enum type.

Return Value

Object
The enum value boxed as Object.
Remarks
Implementations should support the same enum representation used by the serializer. See the serializer documentation for details about how enum values are encoded (name, numeric value, or fully qualified value).
See Also