コード例 #1
0
 /// <summary>
 /// Removes a previously Created Log from the list of sources.
 /// </summary>
 /// <param name="source"></param>
 public static void RemoveSource(TraceSource source)
 {
     if (source == null)
     {
         throw new ArgumentNullException("source");
     }
     TapContext.RemoveLog(source.log);
 }