IDeserializableObject Interface 
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.
Interface used to deserialize objects when the underlying format (binary or JSON) is not known.
public interface class IDeserializableObject
	public interface IDeserializableObject
	type IDeserializableObject = interface
	Public Interface IDeserializableObject
Properties
| IsBinaryFormat | 
		 Returns true if the underlying object got serialized in binary format and false if it was with JSON.  | 
        	
Methods
| GetJsonStringPropertyValue(String) | 
		 Gets the value of a property that belongs to the underlying object if formatted with JSON.  | 
        	
| ToObject(Type) | 
		 Deserializes and returns the object in the underlying stream.  | 
        	
| ToObject<T>() | 
		 Same as ToObject(Type).  |