BindingValueTGetValueOrDefaultTResult(TResult) Method

Gets the value of the binding value if present, otherwise a default value.

Definition

Namespace: Avalonia.Data
Assembly: Avalonia.Base (in Avalonia.Base.dll) Version: 11.3.999
public TResult GetValueOrDefault<TResult>(
	TResult defaultValue
)

Parameters

defaultValue  TResult
The default value.

Type Parameters

TResult

Return Value

TResult
The value if present and of the correct type, `default(TResult)` if the value is present but not of the correct type or null, or defaultValue if the value is not present.

See Also