ClassTypeConverterBase<T, S>
Class
Definition
Namespace:Telerik.Maui.Controls.Compatibility.Common.Android
Assembly:Telerik.Maui.Controls.Compatibility.dll
Type Parameters:
T
S
Syntax:
cs-api-definition
public class TypeConverterBase<T, S> : ITypeConverter, ITypeConverter<Object> where S : ConvertibleObject<T>
Inheritance: objectTypeConverterBase<T, S>
Implements:
Constructors
TypeConverterBase()
Declaration
cs-api-definition
public TypeConverterBase()
Methods
Convert(object)
Converts a source object to the native type.
Declaration
cs-api-definition
public Object Convert(object obj)
Parameters
obj
Returns
Object
The converted object of type T.
Implements
ConvertBack(Object)
Converts a native object back to its source representation.
Declaration
cs-api-definition
public object ConvertBack(Object obj)
Parameters
obj
Object
Returns
The converted source object.
Implements