public double?DoubleValue(string key)
 {
     if (null != DictionaryUtil.Get(ResponseDictionary, key))
     {
         return(double.Parse(DictionaryUtil.Get(ResponseDictionary, key)));
     }
     return(null);
 }
 public int Length(string key)
 {
     if (null != DictionaryUtil.Get(ResponseDictionary, key))
     {
         return(int.Parse(DictionaryUtil.Get(ResponseDictionary, key)));
     }
     return(0);
 }
 public float?FloatValue(string key)
 {
     if (null != DictionaryUtil.Get(ResponseDictionary, key))
     {
         return(float.Parse(DictionaryUtil.Get(ResponseDictionary, key)));
     }
     return(null);
 }
 public bool?BooleanValue(string key)
 {
     if (null != DictionaryUtil.Get(ResponseDictionary, key))
     {
         return(bool.Parse(DictionaryUtil.Get(ResponseDictionary, key)));
     }
     return(null);
 }
 public long?LongValue(string key)
 {
     if (null != DictionaryUtil.Get(ResponseDictionary, key))
     {
         return(long.Parse(DictionaryUtil.Get(ResponseDictionary, key)));
     }
     return(null);
 }
 public string StringValue(string key)
 {
     if (null != DictionaryUtil.Get(ResponseDictionary, key))
     {
         return(DictionaryUtil.Get(ResponseDictionary, key));
     }
     return(null);
 }
 public int?IntegerValue(string key)
 {
     if (null != DictionaryUtil.Get(ResponseDictionary, key))
     {
         return(int.Parse(DictionaryUtil.Get(ResponseDictionary, key)));
     }
     return(null);
 }