public static SCDeepLinking GetInstance(SCConfig config, object context) { if (mDeepLinking == null) { mDeepLinking = new SCDeepLinking(config, context); } return(mDeepLinking); }
public SCServerRequest(string requestPath, SCSession session) { this.mRequestUri = requestPath; this.mSession = session; this.mPreference = SCDeepLinking.GetInstance().Preference; }
public void CreateShortLink(ISCShortLinkCreateListener callback) { SCDeepLinking scDeepLinking = SCDeepLinking.GetInstance(); scDeepLinking.CreateShortLink(Item, callback); }