コード例 #1
0
 /// <summary>
 /// Creates an new WMIContext with the specified host parameter
 /// </summary>
 /// <param name="host"></param>
 public WmiContext(string host)
 {
     _builder = new WmiQueryBuilder(this);
     _host    = host;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WmiContext"/> class.
 /// </summary>
 /// <param name="host">The host.</param>
 public WmiContext(string host)
 {
     this.builder = new WmiQueryBuilder(this);
     this.host    = host;
 }
コード例 #3
0
ファイル: WmiQuery.cs プロジェクト: gmcclelland90/FAP
 public WmiQuery(WmiContext context)
 {
     _context = context;
     _builder = new WmiQueryBuilder(context);
 }