public SCDeepLinking(SCConfig config, object context)
        {
            this.mConfig     = config;
            this.mContext    = context;
            this.mPreference = new SCPreference(context);
            this.mSessions   = new Dictionary <string, SCSession>();

            //if (context == typeof(SCDeepLinkingApp))
            //{

            //}
        }
 public SCServerRequest(string requestPath, SCSession session)
 {
     this.mRequestUri = requestPath;
     this.mSession    = session;
     this.mPreference = SCDeepLinking.GetInstance().Preference;
 }
 public SCServerRequest(string requestPath, SCSession session)
 {
     this.mRequestUri = requestPath;
     this.mSession = session;
     this.mPreference = SCDeepLinking.GetInstance().Preference;
 }