IPinEntryService.cs 519 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace SRDebugger.Services
  4. {
  5. public interface IPinEntryService
  6. {
  7. bool IsShowingKeypad { get; }
  8. void ShowPinEntry(IList<int> requiredPin, string message, PinEntryCompleteCallback callback, bool allowCancel = true);
  9. [Obsolete("blockInput param is deprecated (and ignored), please use overload without it.")]
  10. void ShowPinEntry(IList<int> requiredPin, string message, PinEntryCompleteCallback callback, bool blockInput, bool allowCancel);
  11. }
  12. }