DependencyResolver.ResolveUsing Method

Definition

Overloads

ResolveUsing(Func<Type,Object[],Object>)

Specifies a resolution function that attempts to return an instance of a specified type.

ResolveUsing(Func<Type,Object>)

Specifies a resolution function that attempts to return an instance of the specified type.

ResolveUsing(Func<Type,Object[],Object>)

Specifies a resolution function that attempts to return an instance of a specified type.

public static void ResolveUsing (Func<Type,object[],object> resolver);
static member ResolveUsing : Func<Type, obj[], obj> -> unit

Parameters

resolver
Func<Type,Object[],Object>

A function that returns an instance of a type from an array that provides matching types, or null if the type is not supported.

Remarks

resolver must return null for types that it does not support, because a return value of null passes the type through to Xamarin.Forms so that it may attempt to resolve the type itself.

Applies to

ResolveUsing(Func<Type,Object>)

Specifies a resolution function that attempts to return an instance of the specified type.

public static void ResolveUsing (Func<Type,object> resolver);
static member ResolveUsing : Func<Type, obj> -> unit

Parameters

resolver
Func<Type,Object>

A function that returns an instance of a type, or null if the type is not supported.

Remarks

resolver must return null for types that it does not support, because a return value of null passes the type through to Xamarin.Forms so that it may attempt to resolve the type itself.

Applies to