├── .editorconfig ├── .gitattributes ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── PaySharp.sln ├── README.md ├── _config.yml ├── azure-pipelines.yml ├── dependencies.props ├── global.json ├── logo.png ├── output.props ├── package.props ├── reward.jpg ├── run.bat ├── sample ├── PaySharp.Demo(Net) │ ├── App_Start │ │ └── RouteConfig.cs │ ├── Certs │ │ ├── 1900000109_532398_new.pfx │ │ ├── acp_test_sign.pfx │ │ └── apiclient_cert.p12 │ ├── Content │ │ ├── demo.css │ │ ├── demo.js │ │ ├── favicon.ico │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ └── jquery.min.js │ ├── Global.asax │ ├── Global.asax.cs │ ├── PaySharp.Demo(Net).csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ └── Web.config └── PaySharp.Demo │ ├── Certs │ ├── 1900000109_532398_new.pfx │ ├── acp_test_sign.pfx │ └── apiclient_cert.p12 │ ├── Controllers │ ├── AlipayController.cs │ ├── AllinpayController.cs │ ├── HomeController.cs │ ├── NotifyController.cs │ ├── QpayController.cs │ ├── UnionpayController.cs │ └── WechatpayController.cs │ ├── Models │ └── ErrorViewModel.cs │ ├── PaySharp.Demo.csproj │ ├── PrivateKey.txt │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── PublicKey.txt │ ├── Startup.cs │ ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── card.txt │ └── wwwroot │ ├── demo.css │ ├── demo.js │ ├── favicon.ico │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ └── jquery.min.js ├── src ├── PaySharp.Alipay │ ├── AlipayGateway.cs │ ├── Domain │ │ ├── AppPayModel.cs │ │ ├── BarcodePayModel.cs │ │ ├── BasePayModel.cs │ │ ├── BillDownloadModel.cs │ │ ├── CancelModel.cs │ │ ├── CloseModel.cs │ │ ├── ExtUserInfo.cs │ │ ├── ExtendParam.cs │ │ ├── Goods.cs │ │ ├── QueryModel.cs │ │ ├── RefundModel.cs │ │ ├── RefundQueryModel.cs │ │ ├── ScanPayModel.cs │ │ ├── TradeFundBill.cs │ │ ├── TransferModel.cs │ │ ├── TransferQueryModel.cs │ │ ├── VoucherDetail.cs │ │ ├── WapPayModel.cs │ │ └── WebPayModel.cs │ ├── Merchant.cs │ ├── PaySharp.Alipay.csproj │ ├── PaySharp.snk │ ├── PaySharpConfigExtensions.cs │ ├── Request │ │ ├── AppPayRequest.cs │ │ ├── BarcodePayRequest.cs │ │ ├── BaseRequest.cs │ │ ├── BillDownloadRequest.cs │ │ ├── CancelRequest.cs │ │ ├── CloseRequest.cs │ │ ├── QueryRequest.cs │ │ ├── RefundQueryRequest.cs │ │ ├── RefundRequest.cs │ │ ├── ScanPayRequest.cs │ │ ├── TransferQueryRequest.cs │ │ ├── TransferRequest.cs │ │ ├── WapPayRequest.cs │ │ └── WebPayRequest.cs │ ├── Response │ │ ├── AppPayResponse.cs │ │ ├── BarcodePayResponse.cs │ │ ├── BaseResponse.cs │ │ ├── BillDownloadResponse.cs │ │ ├── CancelResponse.cs │ │ ├── CloseResponse.cs │ │ ├── NotifyResponse.cs │ │ ├── QueryResponse.cs │ │ ├── RefundQueryResponse.cs │ │ ├── RefundResponse.cs │ │ ├── ScanPayResponse.cs │ │ ├── TransferQueryResponse.cs │ │ ├── TransferResponse.cs │ │ ├── WapPayResponse.cs │ │ └── WebPayResponse.cs │ ├── ServiceCollectionExtensions.cs │ └── SubmitProcess.cs ├── PaySharp.Allinpay │ ├── AllinpayGateway.cs │ ├── Domain │ │ ├── BarcodePayModel.cs │ │ ├── BasePayModel.cs │ │ ├── QueryModel.cs │ │ └── UnifiedPayModel.cs │ ├── Enum │ │ ├── PayType.cs │ │ └── TradeType.cs │ ├── Merchant.cs │ ├── PaySharp.Allinpay.csproj │ ├── PaySharp.snk │ ├── PaySharpConfigExtensions.cs │ ├── Request │ │ ├── BarcodePayRequest.cs │ │ ├── BaseRequest.cs │ │ ├── QueryRequest.cs │ │ └── UnifiedPayRequest.cs │ ├── Response │ │ ├── BarcodePayResponse.cs │ │ ├── BaseResponse.cs │ │ ├── NotifyResponse.cs │ │ ├── QueryResponse.cs │ │ └── UnifiedPayResponse.cs │ ├── ServiceCollectionExtensions.cs │ └── SubmitProcess.cs ├── PaySharp.Core.Mvc │ ├── PaySharp.Core.Mvc.csproj │ ├── PaySharp.snk │ └── PaySharpConfig.cs ├── PaySharp.Core │ ├── Attributes │ │ ├── IgnoreAttribute.cs │ │ └── ReNameAttribute.cs │ ├── ConfigurationHandler.cs │ ├── Events │ │ ├── CancelSucceedEventArgs.cs │ │ ├── NotifyEventArgs.cs │ │ ├── PaySucceedEventArgs.cs │ │ ├── RefundSucceedEventArgs.cs │ │ ├── UnKnownNotifyEventArgs.cs │ │ └── UnknownGatewayEventArgs.cs │ ├── Exceptions │ │ └── GatewayException.cs │ ├── Gateways │ │ ├── BaseGateway.cs │ │ ├── GatewayData.cs │ │ ├── Gateways.cs │ │ ├── IGateway.cs │ │ ├── IGateways.cs │ │ └── NullGateway.cs │ ├── IMerchant.cs │ ├── Notify │ │ ├── Notify.cs │ │ ├── NotifyProcess.cs │ │ └── NotifyType.cs │ ├── PaySharp.Core.csproj │ ├── PaySharp.snk │ ├── Request │ │ └── Request.cs │ ├── Response │ │ └── IResponse.cs │ ├── ServiceCollectionExtensions.cs │ └── Utils │ │ ├── EncryptUtil.cs │ │ ├── HttpUtil.cs │ │ ├── StringUtil.cs │ │ ├── Util.cs │ │ └── ValidateUtil.cs ├── PaySharp.Qpay │ ├── ConvertUtil.cs │ ├── Domain │ │ ├── AppPayModel.cs │ │ ├── BarcodePayModel.cs │ │ ├── BasePayModel.cs │ │ ├── BillDownloadModel.cs │ │ ├── CancelModel.cs │ │ ├── CloseModel.cs │ │ ├── PublicPayModel.cs │ │ ├── QueryModel.cs │ │ ├── RefundModel.cs │ │ ├── RefundQueryModel.cs │ │ └── ScanPayModel.cs │ ├── Merchant.cs │ ├── PaySharp.Qpay.csproj │ ├── PaySharp.snk │ ├── PaySharpConfigExtensions.cs │ ├── QpayGateway.cs │ ├── Request │ │ ├── AppPayRequest.cs │ │ ├── BarcodePayRequest.cs │ │ ├── BaseRequest.cs │ │ ├── BillDownloadRequest.cs │ │ ├── CancelRequest.cs │ │ ├── CloseRequest.cs │ │ ├── PublicPayRequest.cs │ │ ├── QueryRequest.cs │ │ ├── RefundQueryRequest.cs │ │ ├── RefundRequest.cs │ │ └── ScanPayRequest.cs │ ├── Response │ │ ├── AppPayResponse.cs │ │ ├── BarcodePayResponse.cs │ │ ├── BaseResponse.cs │ │ ├── BillDownloadResponse.cs │ │ ├── CancelResponse.cs │ │ ├── CloseResponse.cs │ │ ├── NotifyResponse.cs │ │ ├── PublicPayResponse.cs │ │ ├── QueryResponse.cs │ │ ├── RefundQueryResponse.cs │ │ ├── RefundResponse.cs │ │ └── ScanPayResponse.cs │ ├── ServiceCollectionExtensions.cs │ └── SubmitProcess.cs ├── PaySharp.Unionpay │ ├── CertUtil.cs │ ├── Certs │ │ ├── acp_prod_enc.cer │ │ ├── acp_prod_middle.cer │ │ ├── acp_prod_root.cer │ │ ├── acp_test_enc.cer │ │ ├── acp_test_middle.cer │ │ └── acp_test_root.cer │ ├── Domain │ │ ├── AppPayModel.cs │ │ ├── BarcodePayModel.cs │ │ ├── BaseModel.cs │ │ ├── BasePayModel.cs │ │ ├── BillDownloadModel.cs │ │ ├── CancelModel.cs │ │ ├── QueryModel.cs │ │ ├── RefundModel.cs │ │ ├── ScanPayModel.cs │ │ ├── WapPayModel.cs │ │ └── WebPayModel.cs │ ├── Merchant.cs │ ├── PaySharp.Unionpay.csproj │ ├── PaySharp.snk │ ├── PaySharpConfigExtensions.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Request │ │ ├── AppPayRequest.cs │ │ ├── BarcodePayRequest.cs │ │ ├── BaseRequest.cs │ │ ├── BillDownloadRequest.cs │ │ ├── CancelRequest.cs │ │ ├── QueryRequest.cs │ │ ├── RefundRequest.cs │ │ ├── ScanPayRequest.cs │ │ ├── WapPayRequest.cs │ │ └── WebPayRequest.cs │ ├── Response │ │ ├── AppPayResponse.cs │ │ ├── BarcodePayResponse.cs │ │ ├── BaseResponse.cs │ │ ├── BillDownloadResponse.cs │ │ ├── CancelResponse.cs │ │ ├── NotifyResponse.cs │ │ ├── QueryResponse.cs │ │ ├── RefundResponse.cs │ │ ├── ScanPayResponse.cs │ │ ├── WapPayResponse.cs │ │ └── WebPayResponse.cs │ ├── ServiceCollectionExtensions.cs │ ├── SubmitProcess.cs │ └── UnionpayGateway.cs └── PaySharp.Wechatpay │ ├── ConvertUtil.cs │ ├── Domain │ ├── AppPayModel.cs │ ├── AppletPayModel.cs │ ├── BarcodePayModel.cs │ ├── BasePayModel.cs │ ├── BillDownloadModel.cs │ ├── CancelModel.cs │ ├── CloseModel.cs │ ├── FundFlowDownloadModel.cs │ ├── OAuthModel.cs │ ├── PublicPayModel.cs │ ├── QueryModel.cs │ ├── RefundModel.cs │ ├── RefundQueryModel.cs │ ├── ScanPayModel.cs │ ├── TransferModel.cs │ ├── TransferQueryModel.cs │ ├── TransferToBankModel.cs │ ├── TransferToBankQueryModel.cs │ └── WapPayModel.cs │ ├── Merchant.cs │ ├── PaySharp.Wechatpay.csproj │ ├── PaySharp.snk │ ├── PaySharpConfigExtensions.cs │ ├── Request │ ├── AppPayRequest.cs │ ├── AppletPayRequest.cs │ ├── BarcodePayRequest.cs │ ├── BaseRequest.cs │ ├── BillDownloadRequest.cs │ ├── CancelRequest.cs │ ├── CloseRequest.cs │ ├── FundFlowDownloadRequest.cs │ ├── OAuthRequest.cs │ ├── PublicKeyRequest.cs │ ├── PublicPayRequest.cs │ ├── QueryRequest.cs │ ├── RefundQueryRequest.cs │ ├── RefundRequest.cs │ ├── ScanPayRequest.cs │ ├── TransferQueryRequest.cs │ ├── TransferRequest.cs │ ├── TransferToBankQueryRequest.cs │ ├── TransferToBankRequest.cs │ └── WapPayRequest.cs │ ├── Response │ ├── AppPayResponse.cs │ ├── AppletPayResponse.cs │ ├── BarcodePayResponse.cs │ ├── BaseResponse.cs │ ├── BillDownloadResponse.cs │ ├── CancelResponse.cs │ ├── CloseResponse.cs │ ├── FundFlowDownloadResponse.cs │ ├── NotifyResponse.cs │ ├── OAuthResponse.cs │ ├── PublicKeyResponse.cs │ ├── PublicPayResponse.cs │ ├── QueryResponse.cs │ ├── RefundQueryResponse.cs │ ├── RefundResponse.cs │ ├── ScanPayResponse.cs │ ├── TransferQueryResponse.cs │ ├── TransferResponse.cs │ ├── TransferToBankQueryResponse.cs │ ├── TransferToBankResponse.cs │ └── WapPayResponse.cs │ ├── ServiceCollectionExtensions.cs │ ├── SubmitProcess.cs │ └── WechatpayGateway.cs └── test └── PaySharp.UnitTest ├── AlipayGatewayTest.cs ├── AllinpayGatewayTest.cs ├── PaySharp.UnitTest.csproj ├── UnionpayGatewayTest.cs └── acp_test_sign.pfx /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/LICENSE -------------------------------------------------------------------------------- /PaySharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/PaySharp.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/_config.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /dependencies.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/dependencies.props -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/global.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/logo.png -------------------------------------------------------------------------------- /output.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/output.props -------------------------------------------------------------------------------- /package.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/package.props -------------------------------------------------------------------------------- /reward.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/reward.jpg -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | cd sample\PaySharp.Demo 2 | dotnet run 3 | -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Certs/1900000109_532398_new.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Certs/1900000109_532398_new.pfx -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Certs/acp_test_sign.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Certs/acp_test_sign.pfx -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Certs/apiclient_cert.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Certs/apiclient_cert.p12 -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Content/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Content/demo.css -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Content/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Content/demo.js -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Content/favicon.ico -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Content/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Content/jquery-ui.min.css -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Content/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Content/jquery-ui.min.js -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Content/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Content/jquery.min.js -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Global.asax -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Global.asax.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/PaySharp.Demo(Net).csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/PaySharp.Demo(Net).csproj -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Views/Web.config -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Web.Debug.config -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Web.Release.config -------------------------------------------------------------------------------- /sample/PaySharp.Demo(Net)/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo(Net)/Web.config -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Certs/1900000109_532398_new.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Certs/1900000109_532398_new.pfx -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Certs/acp_test_sign.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Certs/acp_test_sign.pfx -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Certs/apiclient_cert.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Certs/apiclient_cert.p12 -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Controllers/AlipayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Controllers/AlipayController.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Controllers/AllinpayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Controllers/AllinpayController.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Controllers/HomeController.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Controllers/NotifyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Controllers/NotifyController.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Controllers/QpayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Controllers/QpayController.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Controllers/UnionpayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Controllers/UnionpayController.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Controllers/WechatpayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Controllers/WechatpayController.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/PaySharp.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/PaySharp.Demo.csproj -------------------------------------------------------------------------------- /sample/PaySharp.Demo/PrivateKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/PrivateKey.txt -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Program.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Properties/launchSettings.json -------------------------------------------------------------------------------- /sample/PaySharp.Demo/PublicKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/PublicKey.txt -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Startup.cs -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /sample/PaySharp.Demo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /sample/PaySharp.Demo/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/appsettings.Development.json -------------------------------------------------------------------------------- /sample/PaySharp.Demo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/appsettings.json -------------------------------------------------------------------------------- /sample/PaySharp.Demo/card.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/card.txt -------------------------------------------------------------------------------- /sample/PaySharp.Demo/wwwroot/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/wwwroot/demo.css -------------------------------------------------------------------------------- /sample/PaySharp.Demo/wwwroot/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/wwwroot/demo.js -------------------------------------------------------------------------------- /sample/PaySharp.Demo/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/wwwroot/favicon.ico -------------------------------------------------------------------------------- /sample/PaySharp.Demo/wwwroot/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/wwwroot/jquery-ui.min.css -------------------------------------------------------------------------------- /sample/PaySharp.Demo/wwwroot/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/wwwroot/jquery-ui.min.js -------------------------------------------------------------------------------- /sample/PaySharp.Demo/wwwroot/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/sample/PaySharp.Demo/wwwroot/jquery.min.js -------------------------------------------------------------------------------- /src/PaySharp.Alipay/AlipayGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/AlipayGateway.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/AppPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/AppPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/BarcodePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/BarcodePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/BasePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/BasePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/BillDownloadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/BillDownloadModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/CancelModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/CancelModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/CloseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/CloseModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/ExtUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/ExtUserInfo.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/ExtendParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/ExtendParam.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/Goods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/Goods.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/QueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/QueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/RefundModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/RefundModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/RefundQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/RefundQueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/ScanPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/ScanPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/TradeFundBill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/TradeFundBill.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/TransferModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/TransferModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/TransferQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/TransferQueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/VoucherDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/VoucherDetail.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/WapPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/WapPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Domain/WebPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Domain/WebPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Merchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Merchant.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/PaySharp.Alipay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/PaySharp.Alipay.csproj -------------------------------------------------------------------------------- /src/PaySharp.Alipay/PaySharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/PaySharp.snk -------------------------------------------------------------------------------- /src/PaySharp.Alipay/PaySharpConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/PaySharpConfigExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/AppPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/AppPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/BarcodePayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/BarcodePayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/BaseRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/BillDownloadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/BillDownloadRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/CancelRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/CancelRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/CloseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/CloseRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/QueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/QueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/RefundQueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/RefundQueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/RefundRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/RefundRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/ScanPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/ScanPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/TransferQueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/TransferQueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/TransferRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/TransferRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/WapPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/WapPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Request/WebPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Request/WebPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/AppPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/AppPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/BarcodePayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/BarcodePayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/BaseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/BaseResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/BillDownloadResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/BillDownloadResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/CancelResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/CancelResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/CloseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/CloseResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/NotifyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/NotifyResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/QueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/QueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/RefundQueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/RefundQueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/RefundResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/RefundResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/ScanPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/ScanPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/TransferQueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/TransferQueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/TransferResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/TransferResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/WapPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/WapPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/Response/WebPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/Response/WebPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Alipay/SubmitProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Alipay/SubmitProcess.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/AllinpayGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/AllinpayGateway.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Domain/BarcodePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Domain/BarcodePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Domain/BasePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Domain/BasePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Domain/QueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Domain/QueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Domain/UnifiedPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Domain/UnifiedPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Enum/PayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Enum/PayType.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Enum/TradeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Enum/TradeType.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Merchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Merchant.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/PaySharp.Allinpay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/PaySharp.Allinpay.csproj -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/PaySharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/PaySharp.snk -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/PaySharpConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/PaySharpConfigExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Request/BarcodePayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Request/BarcodePayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Request/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Request/BaseRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Request/QueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Request/QueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Request/UnifiedPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Request/UnifiedPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Response/BarcodePayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Response/BarcodePayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Response/BaseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Response/BaseResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Response/NotifyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Response/NotifyResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Response/QueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Response/QueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/Response/UnifiedPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/Response/UnifiedPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Allinpay/SubmitProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Allinpay/SubmitProcess.cs -------------------------------------------------------------------------------- /src/PaySharp.Core.Mvc/PaySharp.Core.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core.Mvc/PaySharp.Core.Mvc.csproj -------------------------------------------------------------------------------- /src/PaySharp.Core.Mvc/PaySharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core.Mvc/PaySharp.snk -------------------------------------------------------------------------------- /src/PaySharp.Core.Mvc/PaySharpConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core.Mvc/PaySharpConfig.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Attributes/IgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Attributes/IgnoreAttribute.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Attributes/ReNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Attributes/ReNameAttribute.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/ConfigurationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/ConfigurationHandler.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Events/CancelSucceedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Events/CancelSucceedEventArgs.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Events/NotifyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Events/NotifyEventArgs.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Events/PaySucceedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Events/PaySucceedEventArgs.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Events/RefundSucceedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Events/RefundSucceedEventArgs.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Events/UnKnownNotifyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Events/UnKnownNotifyEventArgs.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Events/UnknownGatewayEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Events/UnknownGatewayEventArgs.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Exceptions/GatewayException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Exceptions/GatewayException.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Gateways/BaseGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Gateways/BaseGateway.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Gateways/GatewayData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Gateways/GatewayData.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Gateways/Gateways.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Gateways/Gateways.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Gateways/IGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Gateways/IGateway.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Gateways/IGateways.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Gateways/IGateways.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Gateways/NullGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Gateways/NullGateway.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/IMerchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/IMerchant.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Notify/Notify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Notify/Notify.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Notify/NotifyProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Notify/NotifyProcess.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Notify/NotifyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Notify/NotifyType.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/PaySharp.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/PaySharp.Core.csproj -------------------------------------------------------------------------------- /src/PaySharp.Core/PaySharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/PaySharp.snk -------------------------------------------------------------------------------- /src/PaySharp.Core/Request/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Request/Request.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Response/IResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Response/IResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Utils/EncryptUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Utils/EncryptUtil.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Utils/HttpUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Utils/HttpUtil.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Utils/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Utils/StringUtil.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Utils/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Utils/Util.cs -------------------------------------------------------------------------------- /src/PaySharp.Core/Utils/ValidateUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Core/Utils/ValidateUtil.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/ConvertUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/ConvertUtil.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/AppPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/AppPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/BarcodePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/BarcodePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/BasePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/BasePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/BillDownloadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/BillDownloadModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/CancelModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/CancelModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/CloseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/CloseModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/PublicPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/PublicPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/QueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/QueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/RefundModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/RefundModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/RefundQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/RefundQueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Domain/ScanPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Domain/ScanPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Merchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Merchant.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/PaySharp.Qpay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/PaySharp.Qpay.csproj -------------------------------------------------------------------------------- /src/PaySharp.Qpay/PaySharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/PaySharp.snk -------------------------------------------------------------------------------- /src/PaySharp.Qpay/PaySharpConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/PaySharpConfigExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/QpayGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/QpayGateway.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/AppPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/AppPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/BarcodePayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/BarcodePayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/BaseRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/BillDownloadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/BillDownloadRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/CancelRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/CancelRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/CloseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/CloseRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/PublicPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/PublicPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/QueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/QueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/RefundQueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/RefundQueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/RefundRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/RefundRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Request/ScanPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Request/ScanPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/AppPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/AppPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/BarcodePayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/BarcodePayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/BaseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/BaseResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/BillDownloadResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/BillDownloadResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/CancelResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/CancelResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/CloseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/CloseResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/NotifyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/NotifyResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/PublicPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/PublicPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/QueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/QueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/RefundQueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/RefundQueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/RefundResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/RefundResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/Response/ScanPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/Response/ScanPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Qpay/SubmitProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Qpay/SubmitProcess.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/CertUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/CertUtil.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Certs/acp_prod_enc.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Certs/acp_prod_enc.cer -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Certs/acp_prod_middle.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Certs/acp_prod_middle.cer -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Certs/acp_prod_root.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Certs/acp_prod_root.cer -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Certs/acp_test_enc.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Certs/acp_test_enc.cer -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Certs/acp_test_middle.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Certs/acp_test_middle.cer -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Certs/acp_test_root.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Certs/acp_test_root.cer -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/AppPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/AppPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/BarcodePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/BarcodePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/BaseModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/BasePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/BasePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/BillDownloadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/BillDownloadModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/CancelModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/CancelModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/QueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/QueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/RefundModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/RefundModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/ScanPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/ScanPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/WapPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/WapPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Domain/WebPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Domain/WebPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Merchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Merchant.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/PaySharp.Unionpay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/PaySharp.Unionpay.csproj -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/PaySharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/PaySharp.snk -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/PaySharpConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/PaySharpConfigExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Properties/Resources.resx -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/AppPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/AppPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/BarcodePayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/BarcodePayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/BaseRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/BillDownloadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/BillDownloadRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/CancelRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/CancelRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/QueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/QueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/RefundRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/RefundRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/ScanPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/ScanPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/WapPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/WapPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Request/WebPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Request/WebPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/AppPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/AppPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/BarcodePayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/BarcodePayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/BaseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/BaseResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/BillDownloadResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/BillDownloadResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/CancelResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/CancelResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/NotifyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/NotifyResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/QueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/QueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/RefundResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/RefundResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/ScanPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/ScanPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/WapPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/WapPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/Response/WebPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/Response/WebPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/SubmitProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/SubmitProcess.cs -------------------------------------------------------------------------------- /src/PaySharp.Unionpay/UnionpayGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Unionpay/UnionpayGateway.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/ConvertUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/ConvertUtil.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/AppPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/AppPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/AppletPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/AppletPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/BarcodePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/BarcodePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/BasePayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/BasePayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/BillDownloadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/BillDownloadModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/CancelModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/CancelModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/CloseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/CloseModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/FundFlowDownloadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/FundFlowDownloadModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/OAuthModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/OAuthModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/PublicPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/PublicPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/QueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/QueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/RefundModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/RefundModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/RefundQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/RefundQueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/ScanPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/ScanPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/TransferModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/TransferModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/TransferQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/TransferQueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/TransferToBankModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/TransferToBankModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/TransferToBankQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/TransferToBankQueryModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Domain/WapPayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Domain/WapPayModel.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Merchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Merchant.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/PaySharp.Wechatpay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/PaySharp.Wechatpay.csproj -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/PaySharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/PaySharp.snk -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/PaySharpConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/PaySharpConfigExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/AppPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/AppPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/AppletPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/AppletPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/BarcodePayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/BarcodePayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/BaseRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/BillDownloadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/BillDownloadRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/CancelRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/CancelRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/CloseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/CloseRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/FundFlowDownloadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/FundFlowDownloadRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/OAuthRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/OAuthRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/PublicKeyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/PublicKeyRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/PublicPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/PublicPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/QueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/QueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/RefundQueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/RefundQueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/RefundRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/RefundRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/ScanPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/ScanPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/TransferQueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/TransferQueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/TransferRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/TransferRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/TransferToBankQueryRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/TransferToBankQueryRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/TransferToBankRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/TransferToBankRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Request/WapPayRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Request/WapPayRequest.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/AppPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/AppPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/AppletPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/AppletPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/BarcodePayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/BarcodePayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/BaseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/BaseResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/BillDownloadResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/BillDownloadResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/CancelResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/CancelResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/CloseResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/CloseResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/FundFlowDownloadResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/FundFlowDownloadResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/NotifyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/NotifyResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/OAuthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/OAuthResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/PublicKeyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/PublicKeyResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/PublicPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/PublicPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/QueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/QueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/RefundQueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/RefundQueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/RefundResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/RefundResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/ScanPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/ScanPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/TransferQueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/TransferQueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/TransferResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/TransferResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/TransferToBankQueryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/TransferToBankQueryResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/TransferToBankResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/TransferToBankResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/Response/WapPayResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/Response/WapPayResponse.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/SubmitProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/SubmitProcess.cs -------------------------------------------------------------------------------- /src/PaySharp.Wechatpay/WechatpayGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/src/PaySharp.Wechatpay/WechatpayGateway.cs -------------------------------------------------------------------------------- /test/PaySharp.UnitTest/AlipayGatewayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/test/PaySharp.UnitTest/AlipayGatewayTest.cs -------------------------------------------------------------------------------- /test/PaySharp.UnitTest/AllinpayGatewayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/test/PaySharp.UnitTest/AllinpayGatewayTest.cs -------------------------------------------------------------------------------- /test/PaySharp.UnitTest/PaySharp.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/test/PaySharp.UnitTest/PaySharp.UnitTest.csproj -------------------------------------------------------------------------------- /test/PaySharp.UnitTest/UnionpayGatewayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/test/PaySharp.UnitTest/UnionpayGatewayTest.cs -------------------------------------------------------------------------------- /test/PaySharp.UnitTest/acp_test_sign.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varorbc/PaySharp/HEAD/test/PaySharp.UnitTest/acp_test_sign.pfx --------------------------------------------------------------------------------