PinPadBase.ExitPinEntryMode Method

Definition

Overloads

ExitPinEntryMode(ErrorCode, Int32)
ExitPinEntryMode(PinEntryStatus, String, String)

Called by the service object to exit PIN entry mode.

ExitPinEntryMode(ErrorCode, Int32)

protected void ExitPinEntryMode (Microsoft.PointOfService.ErrorCode errorCode, int extendedErrorCode);
member this.ExitPinEntryMode : Microsoft.PointOfService.ErrorCode * int -> unit
Protected Sub ExitPinEntryMode (errorCode As ErrorCode, extendedErrorCode As Integer)

Parameters

errorCode
ErrorCode
extendedErrorCode
Int32

Applies to

ExitPinEntryMode(PinEntryStatus, String, String)

Called by the service object to exit PIN entry mode.

protected void ExitPinEntryMode (Microsoft.PointOfService.PinEntryStatus status, string encryptedPin, string additionalSecurityInformation);
member this.ExitPinEntryMode : Microsoft.PointOfService.PinEntryStatus * string * string -> unit
Protected Sub ExitPinEntryMode (status As PinEntryStatus, encryptedPin As String, additionalSecurityInformation As String)

Parameters

status
PinEntryStatus

Contains the current status of PIN entry. Possible values are defined by the PinEntryStatus enumerator.

encryptedPin
String

If status is set to Success, encryptedPin should contain the encrypted data for the PIN that has been entered; otherwise, it should be set to null.

additionalSecurityInformation
String

If status is set to Success, additionalSecurityInformation should contain any pertinent additional security information; otherwise, it should be set to null.

Applies to