System.Diagnostics.Switch.Refresh C# (CSharp) Method

Refresh() private method

private Refresh ( ) : void
return void
        internal void Refresh()
        {
            lock (IntializedLock)
            {
                _initialized = false;
                Initialize();
            }
        }
    }

Usage Example

Beispiel #1
0
 internal static void RefreshAll()
 {
     lock (switches) {
         for (int i = 0; i < switches.Count; i++)
         {
             Switch swtch = ((Switch)switches[i].Target);
             if (swtch != null)
             {
                 swtch.Refresh();
             }
         }
     }
 }
All Usage Examples Of System.Diagnostics.Switch::Refresh