Example #1
0
 private void Destroy()
 {
     if (this.m_Ptr != IntPtr.Zero)
     {
         RemoteConfigSettings.Internal_Destroy(this.m_Ptr);
         this.m_Ptr = IntPtr.Zero;
     }
 }
        internal static void RemoteConfigSettingsUpdated(RemoteConfigSettings rcs, bool wasLastUpdatedFromServer)
        {
            var handler = rcs.Updated;

            if (handler != null)
            {
                handler(wasLastUpdatedFromServer);
            }
        }
Example #3
0
        internal static void RemoteConfigSettingsUpdated(RemoteConfigSettings rcs, bool wasLastUpdatedFromServer)
        {
            Action <bool> updated = rcs.Updated;

            if (updated != null)
            {
                updated(wasLastUpdatedFromServer);
            }
        }
Example #4
0
 internal static void RemoteConfigSettingsUpdated(RemoteConfigSettings rcs, bool wasLastUpdatedFromServer)
 {
     /*
      * Action<bool> updated = rcs.Updated;
      * if (updated != null)
      * {
      *      updated(wasLastUpdatedFromServer);
      * }
      */
 }
Example #5
0
        private void Destroy()
        {
            bool flag = this.m_Ptr != IntPtr.Zero;

            if (flag)
            {
                RemoteConfigSettings.Internal_Destroy(this.m_Ptr);
                this.m_Ptr = IntPtr.Zero;
            }
        }
 internal static extern IntPtr Internal_Create(RemoteConfigSettings rcs, string configKey);
Example #7
0
 [RequiredByNativeCode]         // 0x00000001800D4E50-0x00000001800D4E60
 internal static void RemoteConfigSettingsUpdated(RemoteConfigSettings rcs, bool wasLastUpdatedFromServer)
 {
 }                                                                                                                    // 0x0000000180AF7AF0-0x0000000180AF7B50
Example #8
0
 public RemoteConfigSettings(string configKey)
 {
     this.m_Ptr   = RemoteConfigSettings.Internal_Create(this, configKey);
     this.Updated = null;
 }
 internal static void RemoteConfigSettingsUpdated(
     RemoteConfigSettings rcs,
     bool wasLastUpdatedFromServer)
 {
     return;
 }