Microsoft.ManagementConsole.NamespaceSnapInBase.ProcessNotification C# (CSharp) 메소드

ProcessNotification() 개인적인 메소드

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