/// <summary>
 /// Initializes a new instance of the <see cref="CmdletOperationTestCimSession"/> class.
 /// </summary>
 /// <param name="cmdlet"></param>
 public CmdletOperationTestCimSession(Cmdlet cmdlet,
                                      CimNewSession theCimNewSession)
     : base(cmdlet)
 {
     ValidationHelper.ValidateNoNullArgument(theCimNewSession, theCimNewSessionParameterName);
     this.cimNewSession = theCimNewSession;
 }
示例#2
0
 /// <summary>
 /// BeginProcessing method.
 /// </summary>
 protected override void BeginProcessing()
 {
     cimNewSession        = new CimNewSession();
     this.CmdletOperation = new CmdletOperationTestCimSession(this, this.cimNewSession);
     this.AtBeginProcess  = false;
 }