TypeConverterAttribute Constructors

Definition

Overloads

TypeConverterAttribute()

Creates a new TypeConverterAttribute with default values.

TypeConverterAttribute(String)

Creates a new TypeConverterAttribute object that specifies that the class it decorates converts values to the typeName type.

TypeConverterAttribute(Type)

reates a new TypeConverterAttribute object that specifies that the class it decorates converts values to type.

TypeConverterAttribute()

Creates a new TypeConverterAttribute with default values.

public TypeConverterAttribute ();

Applies to

TypeConverterAttribute(String)

Creates a new TypeConverterAttribute object that specifies that the class it decorates converts values to the typeName type.

public TypeConverterAttribute (string typeName);
new Xamarin.Forms.TypeConverterAttribute : string -> Xamarin.Forms.TypeConverterAttribute

Parameters

typeName
System.String

The name of the type that this attribute can decorate.

Applies to

TypeConverterAttribute(Type)

reates a new TypeConverterAttribute object that specifies that the class it decorates converts values to type.

public TypeConverterAttribute (Type type);
new Xamarin.Forms.TypeConverterAttribute : Type -> Xamarin.Forms.TypeConverterAttribute

Parameters

type
System.Type

The type that this attribute can decorate.

Applies to