Orc.NuGetExplorer.PackageManagerWatcherBase.PackageManagerWatcherBase C# (CSharp) Method

PackageManagerWatcherBase() public method

public PackageManagerWatcherBase ( IPackageOperationNotificationService packageOperationNotificationService ) : Catel
packageOperationNotificationService IPackageOperationNotificationService
return Catel
        public PackageManagerWatcherBase(IPackageOperationNotificationService packageOperationNotificationService)
        {
            Argument.IsNotNull(() => packageOperationNotificationService);

            packageOperationNotificationService.OperationStarting += OnOperationStarting;
            packageOperationNotificationService.OperationFinished += OnOperationFinished;
            packageOperationNotificationService.OperationsBatchStarting += OnOperationsBatchStarting;
            packageOperationNotificationService.OperationsBatchFinished += OnOperationsBatchFinished;
        }
        #endregion