Exemple #1
0
 /// <summary>
 /// This constructor will create an empty class, normally
 /// used when the Node property is assigned
 /// </summary>
 public TraceScan(IScannerClient client)
 {
     m_id = Guid.NewGuid();
     m_messages = new MessageCollection();
     m_machine = Environment.MachineName;
     m_messages.MachineName = m_machine;
     m_user = Environment.UserName;
     m_mailBox = Environment.UserName;
     m_client = client;
 }
Exemple #2
0
 public void RebuildView(IScannerClient client)
 {
     if (IsRebuilding == false )
         CreateView(client);
 }