Microsoft.ManagementConsole.NamespaceSnapInBase.ProcessNotification C# (CSharp) Method

ProcessNotification() private method

private ProcessNotification ( Notification notif ) : void
notif Microsoft.ManagementConsole.Internal.Notification
return void
        internal override void ProcessNotification(Notification notif)
        {
            DeactivateNodeNotification notification = notif as DeactivateNodeNotification;
            if (notification != null)
            {
                this._nodeSyncManager.DeactivateNode(notification.ScopeNodeId);
            }
            else
            {
                base.ProcessNotification(notif);
            }
        }