Beispiel #1
0
        public void AbortProcess(string token)
        {
            var session = Context.OpenSession();
            var process = GetActiveProcess(session, token, confirmedOnly: false);

            if (process != null)
            {
                _processService.AbortPasswordReset(process);
            }
        }
Beispiel #2
0
 public void AbortProcess(string token) {
   var process = GetActiveProcess(token, confirmedOnly: false); 
   if(process != null) 
     _processService.AbortPasswordReset(process);
 }