ClassTypeRegister
Definition
Namespace:Telerik.Maui.Controls.Compatibility.Common.Android
Assembly:Telerik.Maui.Controls.Compatibility.dll
Syntax:
public class TypeRegister : TypeRegister<Object>
Inheritance: objectTypeRegister<Object>TypeRegister
Inherited Members
Methods
GetNativeObjectCore(object)
When overridden in a derived class, gets the platform-specific representation of the object.
Declaration
protected override Object GetNativeObjectCore(object value)
Parameters
value
The object to convert.
Returns
Object
The platform-specific representation.
Overrides
GetNativeTypeCore(Type)
When overridden in a derived class, gets the platform-specific type for the specified type.
GetObjectCore(Object, Type, object)
When overridden in a derived class, gets the object representation from the platform-specific value.
Declaration
protected override object GetObjectCore(Object value, Type clrType, object context)
Parameters
value
Object
The platform-specific value to convert.
clrType
The CLR type to convert to.
context
The conversion context.
Returns
The converted object.
Overrides
GetTypeConverter(Type, Type)
When overridden in a derived class, gets a type converter for the specified types.
Declaration
protected override ITypeConverter<Object> GetTypeConverter(Type type, Type nativeType)
Parameters
type
The source type.
nativeType
The target native type.
Returns
ITypeConverter<Object>
A type converter for the specified types.
Overrides