Inheritance: System.Configuration.ConfigurationElementCollection
Esempio n. 1
0
 internal void Refresh()
 {
     lock (TraceInternal.critSec) {
         initialized    = false;
         switchSettings = null;
         Initialize();
     }
 }
Esempio n. 2
0
File: Switch.cs Progetto: ash2005/z
 internal void Refresh()
 {
     lock (IntializedLock) {
         initialized    = false;
         switchSettings = null;
         Initialize();
     }
 }
Esempio n. 3
0
 internal void Refresh()
 {
     lock (this.IntializedLock)
     {
         this.initialized    = false;
         this.switchSettings = null;
         this.Initialize();
     }
 }
Esempio n. 4
0
 private bool InitializeConfigSettings()
 {
     if (this.switchSettings == null)
     {
         if (!DiagnosticsConfiguration.CanInitialize())
         {
             return(false);
         }
         this.switchSettings = DiagnosticsConfiguration.SwitchSettings;
     }
     return(true);
 }
Esempio n. 5
0
File: Switch.cs Progetto: ash2005/z
        private bool InitializeConfigSettings()
        {
            if (switchSettings != null)
            {
                return(true);
            }

            if (!DiagnosticsConfiguration.CanInitialize())
            {
                return(false);
            }

            // This hashtable is case-insensitive.
            switchSettings = DiagnosticsConfiguration.SwitchSettings;
            return(true);
        }
 private bool InitializeConfigSettings()
 {
     if (this.switchSettings == null)
     {
         if (!DiagnosticsConfiguration.CanInitialize())
         {
             return false;
         }
         this.switchSettings = DiagnosticsConfiguration.SwitchSettings;
     }
     return true;
 }
 internal void Refresh()
 {
     lock (this.IntializedLock)
     {
         this.initialized = false;
         this.switchSettings = null;
         this.Initialize();
     }
 }
Esempio n. 8
0
 internal void Refresh() {
     initialized = false;
     switchSettings = null;
     Initialize();
 }
Esempio n. 9
0
        private bool InitializeConfigSettings() {
            if (switchSettings != null)
                return true;

            if (!DiagnosticsConfiguration.CanInitialize())
                return false;

            // This hashtable is case-insensitive.
            switchSettings = DiagnosticsConfiguration.SwitchSettings;
            return true;
        }