DataServiceContext.ResolveType Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a function that is used to override the default type resolution option that is used by the client library when receiving entities from a data service.
public:
property Func<System::String ^, Type ^> ^ ResolveType { Func<System::String ^, Type ^> ^ get(); void set(Func<System::String ^, Type ^> ^ value); };
public Func<string,Type> ResolveType { get; set; }
member this.ResolveType : Func<string, Type> with get, set
Public Property ResolveType As Func(Of String, Type)
Property Value
A function delegate that identifies an override function that is used to override the default type resolution option that is used by the client library.
Remarks
Enables override of the default type resolution strategy that is used by the client library. Set this property to a delegate that identifies a function that resolves a namespace-qualified type name to a type in the client application. This enables the client to do custom mapping between the type name provided in a response from the server and a type on the client.
Overriding type resolution also enables inserting a custom mapping strategy between a type name and a type. It does not affect how a response is materialized to the identified type.