示例#1
0
 /// <summary>
 /// Called to inform the viewer of an error state.
 /// </summary>
 /// <param name="Error">Error.</param>
 public void Error(string Error)
 {
     if (this.hasSniffers)
     {
         foreach (ISniffer Sniffer in this.staticList)
         {
             Sniffer.Error(Error);
         }
     }
 }