public Guid RegistrOperation(string displayName)
 {
     var info = new SingleProcessDeploymentOperationInformation
         (new OperationStatusInformation(OperationState.Started),
          displayName
          );
     var operationID = Guid.NewGuid();
     _operations.Add(operationID, info);
     return operationID;
 }
 private void SetOperationForCollection(SingleProcessDeploymentOperationInformation operation)
 {
     operation.IsPendingCollection = true;
 }