Orc.NuGetExplorer.PackageManager.NotifyOperationBatchFinished C# (CSharp) Method

NotifyOperationBatchFinished() public method

public NotifyOperationBatchFinished ( PackageOperationType operationType ) : void
operationType PackageOperationType
return void
        public void NotifyOperationBatchFinished(PackageOperationType operationType, params IPackageDetails[] packages)
        {
            Argument.IsNotNullOrEmptyArray(() => packages);

            OperationsBatchFinished.SafeInvoke(this, new PackageOperationBatchEventArgs(operationType, packages));
        }