Example #1
0
 /// <summary>
 /// Constructor method.
 /// </summary>
 /// <param name="cmdlet"></param>
 public CmdletOperationTestCimSession(Cmdlet cmdlet,
                                      CimNewSession theCimNewSession)
     : base(cmdlet)
 {
     ValidationHelper.ValidateNoNullArgument(theCimNewSession, theCimNewSessionParameterName);
     this.cimNewSession = theCimNewSession;
 }
 /// <summary>
 /// BeginProcessing method.
 /// </summary>
 protected override void BeginProcessing()
 {
     cimNewSession        = new CimNewSession();
     this.CmdletOperation = new CmdletOperationTestCimSession(this, this.cimNewSession);
     this.AtBeginProcess  = false;
 }
 /// <summary>
 /// BeginProcessing method.
 /// </summary>
 protected override void BeginProcessing()
 {
     cimNewSession = new CimNewSession();
     this.CmdletOperation = new CmdletOperationTestCimSession(this, this.cimNewSession);
     this.AtBeginProcess = false;
 }//End BeginProcessing()
		public CmdletOperationTestCimSession(Cmdlet cmdlet, CimNewSession theCimNewSession) : base(cmdlet)
		{
			ValidationHelper.ValidateNoNullArgument(theCimNewSession, "theCimNewSession");
			this.cimNewSession = theCimNewSession;
		}