private void ProcessStateChangeNotification()

in MoleDeploy.UWPClient/VstsBuildStateMonitor.cs [46:60]


        private void ProcessStateChangeNotification(VstsBuildStateChangeNotification notification) {
            if (state != VstsBuildState.Unknown && state != VstsBuildState.DeployComplete && notification.State != state)
            {
                OnStateEnd(this, state);
            }

            if (notification?.State == null)
            {
                return;
            }

            state = notification.State;

            OnStateBegin(this, notification.State, notification.Message);
        }