Click or drag to resize

IXmlDeserializationInfoGetValueOrNullT(String, Object) Method

Reads a value of type T or returns null.

Namespace: Altaxo.Serialization.Xml
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
T GetValueOrNull<T>(
	string name,
	Object? parentObject
)
where T : class

Parameters

name  String
Element name.
parentObject  Object
Parent object for context.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Serialization.Xml.IXmlDeserializationInfo.GetValueOrNull``1(System.String,System.Object)"]

Return Value

T
Deserialized value or null if the element is missing.
See Also