SerializationInfoExtensionsGetValueOrDefault(SerializationInfo, String, Object) Method

Tries to get a value from a SerializationInfo for the given name.

Definition

Namespace: KGySoft.Serialization.Binary
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public static Object? GetValueOrDefault(
	this SerializationInfo info,
	string name,
	Object? defaultValue = null
)

Parameters

info  SerializationInfo
The SerializationInfo to retrieve the value from.
name  String
The name of the value to be retrieved.
defaultValue  Object  (Optional)
The default value to return if name was not found. This parameter is optional.
Default value: .

Return Value

Object
The found value or if name was not found in the SerializationInfo.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SerializationInfo. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also