コード例 #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);
        }
コード例 #2
0
 public static bool IsUrlSchemeAction()
 {
     return(NpUrlSchemeAndroid.IsUrlSchemeAction());
 }
コード例 #3
0
 public static void Clear()
 {
     NpUrlSchemeAndroid.Clear();
 }
コード例 #4
0
        public static string GetPath()
        {
            string empty = string.Empty;

            return(NpUrlSchemeAndroid.GetPath());
        }