IDataMemberJsonConverter Interface
Provides a way to apply custom conversion logic for the serialization or deserialization of a Mobile Services member. A converter is associated with a given field via the DataMemberJsonConverterAttribute.
Namespace: Microsoft.WindowsAzure.MobileServices
Assembly: Microsoft.WindowsAzure.MobileServices.Managed (in Microsoft.WindowsAzure.MobileServices.Managed.dll)
Syntax
'Declaration
Public Interface IDataMemberJsonConverter
'Usage
Dim instance As IDataMemberJsonConverter
public interface IDataMemberJsonConverter
public interface class IDataMemberJsonConverter
type IDataMemberJsonConverter = interface end
public interface IDataMemberJsonConverter
The IDataMemberJsonConverter type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
ConvertFromJson(IJsonValue) | Convert an object from its JSON representation. Not supported in Windows Phone 8 apps. |
![]() |
ConvertFromJson(JToken) | Converts an object from its JSON representation. Supported only in Windows Phone 8 apps. |
![]() |
ConvertToJson | Converts an instance into its serialized JSON representation. |
Top