public DirectoryRootQuery(String name, String value, DirectoryQueryOperation operation)
        {
            if (name == null)
                throw new ArgumentNullException("name");
            if (value == null)
                throw new ArgumentNullException("value");

            this.m_name = name;
            this.m_value = value;
            this.m_operation = operation;
        }
Пример #2
0
 public DirectoryRootQuery(string name, string value, DirectoryQueryOperation operation)
 {
     if (name == null)
     {
         throw new ArgumentNullException("name");
     }
     if (value == null)
     {
         throw new ArgumentNullException("value");
     }
     this.m_name      = name;
     this.m_value     = value;
     this.m_operation = operation;
 }
 public DirectoryLocalQuery(string name, string value, DirectoryQueryOperation operation)
 {
     if (name == null)
     {
         throw new ArgumentNullException("name");
     }
     if (value == null)
     {
         throw new ArgumentNullException("value");
     }
     this.m_name = name;
     this.m_value = value;
     this.m_operation = operation;
 }