System.BCLDebug.Trace C# (CSharp) Method

Trace() private method

private Trace ( string switchName ) : void
switchName string
return void
		public static void Trace (string switchName, params object[]messages)
		{
		}
	}

Usage Example

Beispiel #1
0
 //This method is called from native code.  If you update the signature, please also update
 //mscorlib.h and COMUtilNative.cpp
 internal static void FireCacheEvent()
 {
     BCLDebug.Trace("CACHE", "Called FileCacheEvent");
     if (m_cacheHandler != null)
     {
         m_cacheHandler(null, null);
         m_cacheHandler = null;
     }
 }
All Usage Examples Of System.BCLDebug::Trace