IXmlDeserializationInfoGetBaseValueEmbeddedOrNull Method |
Note: This API is now obsolete.
Deserializes the embedded base type.
Namespace: Altaxo.Serialization.XmlAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax[ObsoleteAttribute("For backward compatibility only (if base type has changed). Use 'void GetBaseValueEmbedded(object instance, System.Type basetype, object? parent)' instead!")]
Object? GetBaseValueEmbeddedOrNull(
Object instance,
string fullyQualifiedBaseTypeName,
Object? parent
)Parameters
- instance Object
- The instance of the object to deserialize.
- fullyQualifiedBaseTypeName String
- Fully qualified base type name. It is the short name of the assembly, comma, the full type name, comma, and the version. The string must not contain whitespaces. Example: 'AltaxoBase,SampleFileRenamer.Main.DocumentPath,0'.
- parent Object
- The parent object of the current object to deserialize.
Return Value
Object
The deserialized base value as an
Object, or
null when no base value could
be deserialized for the provided
fullyQualifiedBaseTypeName.
Remarks
See Also