Ejemplo n.º 1
0
        public static Dictionary <string, object> GetQueryParam()
        {
            string value = string.Empty;

            value = NpUrlSchemeAndroid.GetQueryParamJson();
            Dictionary <string, object> dictionary = new Dictionary <string, object>();

            if (!string.IsNullOrEmpty(value))
            {
                dictionary = JsonReader.Deserialize <Dictionary <string, object> >(value);
            }
            return((dictionary.Count > 0) ? dictionary : null);
        }
Ejemplo n.º 2
0
 public static bool IsUrlSchemeAction()
 {
     return(NpUrlSchemeAndroid.IsUrlSchemeAction());
 }
Ejemplo n.º 3
0
 public static void Clear()
 {
     NpUrlSchemeAndroid.Clear();
 }
Ejemplo n.º 4
0
        public static string GetPath()
        {
            string empty = string.Empty;

            return(NpUrlSchemeAndroid.GetPath());
        }