AppActs.Client.WebSite.App_Base.GraphSeriesConverter.Deserialize C# (CSharp) Method

Deserialize() public method

When overridden in a derived class, converts the provided dictionary into an object of the specified type.
public Deserialize ( object>.IDictionary dictionary, Type type, System.Web.Script.Serialization.JavaScriptSerializer serializer ) : object
dictionary object>.IDictionary An instance of property data stored as name/value pairs.
type System.Type The type of the resulting object.
serializer System.Web.Script.Serialization.JavaScriptSerializer The instance.
return object
        public override object Deserialize(IDictionary<string, object> dictionary, Type type, JavaScriptSerializer serializer)
        {
            throw new NotImplementedException();
        }