C# Class CarDeliveryNetwork.Api.Data.Proof

Proof
Inheritance: IApiEntity
Show file Open project: cardeliverynetwork/openapi.net

Public Methods

Method Description
FromString ( string serializedObject ) : Proof

Reads the JSON document and returns the deserialized object.

FromString ( string serializedObject, MessageFormat format ) : Proof

Reads the JSON or XML document and returns the deserialized object.

ToString ( ) : string

Returns a serial representation of the object in JSON format.

ToString ( MessageFormat format ) : string

Returns a serial representation of the object in the specified format.

Method Details

FromString() public static method

Reads the JSON document and returns the deserialized object.
public static FromString ( string serializedObject ) : Proof
serializedObject string The JSON serialized object.
return Proof

FromString() public static method

Reads the JSON or XML document and returns the deserialized object.
public static FromString ( string serializedObject, MessageFormat format ) : Proof
serializedObject string The serialized object.
format MessageFormat The format of the serialized object.
return Proof

ToString() public method

Returns a serial representation of the object in JSON format.
public ToString ( ) : string
return string

ToString() public method

Returns a serial representation of the object in the specified format.
public ToString ( MessageFormat format ) : string
format MessageFormat Format to serialize to.
return string