PSParallel.InvokeParallelCommand.BeginProcessing C# (CSharp) Method

BeginProcessing() protected method

protected BeginProcessing ( ) : void
return void
		protected override void BeginProcessing()
		{
			ValidateParameters();
			var iss = GetSessionState();
			PowershellPool = new PowershellPool(ThrottleLimit, iss, _cancelationTokenSource.Token);			
			_worker = NoProgress ? (WorkerBase) new NoProgressWorker(this) : new ProgressWorker(this);
		}