Ejemplo n.º 1
0
        // GET: Activities/DisplaySALog
        public ActionResult DisplaySALog(long ActivityId)
        {
            SALogData saqlData = (SALogData)rsContext.getActivityLog(ActivityId);
            SALog     saql     = Adapting.getShortAnswerQuestionLogFromData(saqlData);

            return(View(saql));
        }
Ejemplo n.º 2
0
 public SensorsAnalyticsWrapper(string serverUrl, bool enableLog, int autoTrackType, int networkType)
 {
     this.serverUrl     = serverUrl;
     this.enableLog     = enableLog;
     this.autoTrackType = 0;
     this.networkType   = networkType;
     SALog.IsLogEnalbe(enableLog);
     SALog.Debug("Unity Config=======init serverUrl:" + serverUrl + ", enableLog:" + enableLog
                 + ", networkType:" + networkType);
     _init();
 }
Ejemplo n.º 3
0
 void Awake()
 {
     SALog.Debug("sensorsdataapi awake.");
     if (saInstance == null)
     {
         DontDestroyOnLoad(gameObject);
         saInstance = this;
     }
     else
     {
         Destroy(gameObject);
         return;
     }
     analyticsWrapper = new SensorsAnalyticsWrapper(serverUrl, isEnableLog, autoTrackType, networkType);
 }
Ejemplo n.º 4
0
 private void _login(string loginId)
 {
     SALog.Debug("Editor Log: calling login: loginId=" + loginId + ".");
 }
Ejemplo n.º 5
0
 private void _identify(string distinctId)
 {
     SALog.Debug("Editor Log: calling identity: distinctId=" + distinctId + ".");
 }
Ejemplo n.º 6
0
 private void _resetAnonymousId()
 {
     SALog.Debug("Editor Log: calling resetAnonymousId.");
 }
Ejemplo n.º 7
0
 private void _registerSuperProperties(Dictionary <string, object> properties)
 {
     SALog.Debug("Editor Log: calling registerSuperProperties: properties=" + SAUtils.ToDebugString(properties));
 }
Ejemplo n.º 8
0
 private void _clearSuperProperties()
 {
     SALog.Debug("Editor Log: calling clearSuperProperties.");
 }
Ejemplo n.º 9
0
 private string _trackTimerStart(string eventName)
 {
     SALog.Debug("Editor Log: calling trackTimerStart: eventName=" + eventName);
     return("");
 }
Ejemplo n.º 10
0
 private void _trackTimerResume(string eventName)
 {
     SALog.Debug("Editor Log: calling trackTimerResume: eventName=" + eventName);
 }
Ejemplo n.º 11
0
 private void _deleteAll()
 {
     SALog.Debug("Editor Log: calling DeleteAll");
 }
Ejemplo n.º 12
0
 private void _setFlushBulkSize(int flushBulkSize)
 {
     SALog.Debug("Editor Log: calling SetFlushBulkSize: flushBulkSize=" + flushBulkSize);
 }
Ejemplo n.º 13
0
 private void _setAndroidMaxCacheSize(long maxCacheSize)
 {
     SALog.Debug("Editor Log: calling SetAndroidMaxCacheSize: maxCacheSize=" + maxCacheSize);
 }
Ejemplo n.º 14
0
 private void _setiOSMaxCacheSize(long maxCount)
 {
     SALog.Debug("Editor Log: calling SetiOSMaxCacheSize: maxCacheSize=" + maxCount);
 }
Ejemplo n.º 15
0
 private void _removeTimer(string eventName)
 {
     SALog.Debug("Editor Log: calling RemoveTimer: eventName=" + eventName);
 }
Ejemplo n.º 16
0
 //二期内容
 private void _trackInstallation(Dictionary <string, object> properties = null, bool disableCallback = false)
 {
     SALog.Debug("Editor Log: calling TrackInstallation: properties=" + SAUtils.ToDebugString(properties) + ", " + disableCallback);
 }
Ejemplo n.º 17
0
 private void _handleSchemeUrl(string url)
 {
     SALog.Debug("editor handle scheme: " + url);
 }
Ejemplo n.º 18
0
 private void _logout()
 {
     SALog.Debug("Editor Log: calling logout.");
 }
Ejemplo n.º 19
0
 private void _setFlushInterval(int flushInteval)
 {
     SALog.Debug("Editor Log: calling SetFlushInterval: flushInteval=" + flushInteval);
 }
Ejemplo n.º 20
0
 private void _profileSetOnce(Dictionary <string, object> properties)
 {
     SALog.Debug("Editor Log: calling profileSetOnce: properties=" + SAUtils.ToDebugString(properties));
 }
Ejemplo n.º 21
0
 private void _unregisterSuperProperty(string superPropertyName)
 {
     SALog.Debug("Editor Log: calling unregisterSuperProperty: superPropertyName=" + superPropertyName);
 }
Ejemplo n.º 22
0
 private void _trackTimerEnd(string eventName, Dictionary <string, object> properties)
 {
     SALog.Debug("Editor Log: calling trackTimerEnd: eventName=" + eventName + ", properties=" + SAUtils.ToDebugString(properties));
 }
Ejemplo n.º 23
0
 private void _init()
 {
     SALog.Debug("Editor Log: calling init.");
 }
Ejemplo n.º 24
0
 private void _clearTrackTimer()
 {
     SALog.Debug("Editor Log: calling clearTrackTimer.");
 }
Ejemplo n.º 25
0
 private void _flush()
 {
     SALog.Debug("Editor Log: calling flush.");
 }
Ejemplo n.º 26
0
 private void _setFlushNetworkPolicy(int types)
 {
     SALog.Debug("Editor Log: calling SetFlushNetworkPolicy: types=" + types);
 }
Ejemplo n.º 27
0
 private Dictionary <string, object> _getSuperProperties()
 {
     SALog.Debug("Editor Log: calling getSuperProperties.");
     return(new Dictionary <string, object>());
 }