Esempio n. 1
0
 private void Gateway_BarcodePaymentFailed(object arg1, PaymentFailedEventArgs arg2)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 private void _alipayGateway_PaymentFailed(object arg1, PaymentFailedEventArgs arg2)
 {
     Trace.WriteLine(arg2.Message);
 }
Esempio n. 3
0
 private void Notify_PaymentFailed(object arg1, PaymentFailedEventArgs arg2)
 {
     throw new NotImplementedException();
 }
Esempio n. 4
0
 private void Notify_PaymentFailed(object sender, PaymentFailedEventArgs e)
 {
     // 支付失败时的处理代码
 }
Esempio n. 5
0
 private void OnPaymentFailed(PaymentFailedEventArgs e) => PaymentFailed?.Invoke(this, e);