IXmlDeserializationInfoGetEnum(String, Type) Method |
Reads a named enum value of the given type.
Namespace: Altaxo.Serialization.XmlAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
SyntaxObject GetEnum(
string name,
Type type
)
Parameters
- name String
- Element name.
- type Type
- Enum type.
Return Value
ObjectThe 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