├── .gitignore ├── README.md └── src ├── AW.Pay.Core ├── AW.Pay.Core.csproj ├── AliPay.cs ├── App.config ├── Common │ ├── BizResult.cs │ ├── Config.cs │ ├── HTTPHelper.cs │ ├── MD5Helper.cs │ └── RSAFromPkcs8.cs ├── Enum │ ├── EnumAliPayTradeType.cs │ ├── EnumBizCode.cs │ ├── EnumSignType.cs │ └── EnumWePayTradeType.cs ├── Interface │ ├── IAlipay.cs │ └── IWePay.cs ├── Model │ ├── AlipayReturnModel.cs │ └── WepayReturnModel.cs ├── Properties │ └── AssemblyInfo.cs ├── WePay.cs └── packages.config ├── AW.Webapi.Sample ├── AW.Webapi.Sample.csproj ├── App_Start │ ├── Bootstrapper.cs │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ ├── Startup.Auth.cs │ └── WebApiConfig.cs ├── Areas │ ├── Api │ │ └── Controllers │ │ │ └── PaymentController.cs │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs │ │ ├── App_Start │ │ └── HelpPageConfig.cs │ │ ├── Controllers │ │ └── HelpController.cs │ │ ├── HelpPage.css │ │ ├── HelpPageAreaRegistration.cs │ │ ├── HelpPageConfigurationExtensions.cs │ │ ├── ModelDescriptions │ │ ├── CollectionModelDescription.cs │ │ ├── ComplexTypeModelDescription.cs │ │ ├── DictionaryModelDescription.cs │ │ ├── EnumTypeModelDescription.cs │ │ ├── EnumValueDescription.cs │ │ ├── IModelDocumentationProvider.cs │ │ ├── KeyValuePairModelDescription.cs │ │ ├── ModelDescription.cs │ │ ├── ModelDescriptionGenerator.cs │ │ ├── ModelNameAttribute.cs │ │ ├── ModelNameHelper.cs │ │ ├── ParameterAnnotation.cs │ │ ├── ParameterDescription.cs │ │ └── SimpleTypeModelDescription.cs │ │ ├── Models │ │ └── HelpPageApiModel.cs │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs │ │ ├── HelpPageSampleKey.cs │ │ ├── ImageSample.cs │ │ ├── InvalidSample.cs │ │ ├── ObjectGenerator.cs │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ ├── TestClient.css │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ ├── Parameters.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ ├── TestClientDialogs.cshtml │ │ │ │ ├── TestClientReferences.cshtml │ │ │ │ └── TextSample.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ResourceModel.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ └── XmlDocumentationProvider.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── themes │ │ └── base │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery.ui.accordion.css │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.menu.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.selectable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.spinner.css │ │ ├── jquery.ui.tabs.css │ │ ├── jquery.ui.theme.css │ │ ├── jquery.ui.tooltip.css │ │ └── minified │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui.min.css │ │ ├── jquery.ui.accordion.min.css │ │ ├── jquery.ui.autocomplete.min.css │ │ ├── jquery.ui.button.min.css │ │ ├── jquery.ui.core.min.css │ │ ├── jquery.ui.datepicker.min.css │ │ ├── jquery.ui.dialog.min.css │ │ ├── jquery.ui.menu.min.css │ │ ├── jquery.ui.progressbar.min.css │ │ ├── jquery.ui.resizable.min.css │ │ ├── jquery.ui.selectable.min.css │ │ ├── jquery.ui.slider.min.css │ │ ├── jquery.ui.spinner.min.css │ │ ├── jquery.ui.tabs.min.css │ │ ├── jquery.ui.theme.min.css │ │ └── jquery.ui.tooltip.min.css ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ ├── PaymentController.cs │ └── ValuesController.cs ├── Global.asax ├── Global.asax.cs ├── Models │ ├── AccountBindingModels.cs │ ├── AccountViewModels.cs │ ├── IdentityModels.cs │ └── PayModel │ │ ├── AliPayReqParam.cs │ │ └── WePayReqParam.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Providers │ └── ApplicationOAuthProvider.cs ├── Results │ └── ChallengeResult.cs ├── Scripts │ ├── WebApiTestClient.js │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery-ui-1.9.2.js │ ├── jquery-ui-1.9.2.min.js │ ├── jquery.qrcode.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── knockout-3.2.0.debug.js │ ├── knockout-3.2.0.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Startup.cs ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Payment │ │ ├── AliPayDemo.cshtml │ │ ├── Index.cshtml │ │ ├── WePay.cshtml │ │ └── WePayDemo.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config ├── AlipayAndWepay.Net.sln └── ConsoleTest ├── App.config ├── ConsoleTest.csproj ├── Program.cs └── Properties └── AssemblyInfo.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/README.md -------------------------------------------------------------------------------- /src/AW.Pay.Core/AW.Pay.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/AW.Pay.Core.csproj -------------------------------------------------------------------------------- /src/AW.Pay.Core/AliPay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/AliPay.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/App.config -------------------------------------------------------------------------------- /src/AW.Pay.Core/Common/BizResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Common/BizResult.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Common/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Common/Config.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Common/HTTPHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Common/HTTPHelper.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Common/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Common/MD5Helper.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Common/RSAFromPkcs8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Common/RSAFromPkcs8.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Enum/EnumAliPayTradeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Enum/EnumAliPayTradeType.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Enum/EnumBizCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Enum/EnumBizCode.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Enum/EnumSignType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Enum/EnumSignType.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Enum/EnumWePayTradeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Enum/EnumWePayTradeType.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Interface/IAlipay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Interface/IAlipay.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Interface/IWePay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Interface/IWePay.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Model/AlipayReturnModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Model/AlipayReturnModel.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Model/WepayReturnModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Model/WepayReturnModel.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/WePay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/WePay.cs -------------------------------------------------------------------------------- /src/AW.Pay.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Pay.Core/packages.config -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/AW.Webapi.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/AW.Webapi.Sample.csproj -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/App_Start/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/App_Start/Bootstrapper.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/Api/Controllers/PaymentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/Api/Controllers/PaymentController.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/TestClient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/TestClient.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/TestClientDialogs.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/TestClientDialogs.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/TestClientReferences.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/TestClientReferences.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/Site.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/bootstrap.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/bootstrap.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.accordion.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.button.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.dialog.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.menu.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.resizable.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.selectable.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.slider.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.spinner.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/jquery.ui.tooltip.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery-ui.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.accordion.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.autocomplete.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.button.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.core.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.datepicker.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.dialog.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.menu.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.progressbar.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.resizable.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.selectable.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.slider.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.spinner.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.tabs.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.theme.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Content/themes/base/minified/jquery.ui.tooltip.min.css -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Controllers/PaymentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Controllers/PaymentController.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Global.asax -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Global.asax.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Models/AccountBindingModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Models/AccountBindingModels.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Models/IdentityModels.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Models/PayModel/AliPayReqParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Models/PayModel/AliPayReqParam.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Models/PayModel/WePayReqParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Models/PayModel/WePayReqParam.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Project_Readme.html -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Providers/ApplicationOAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Providers/ApplicationOAuthProvider.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Results/ChallengeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Results/ChallengeResult.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/WebApiTestClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/WebApiTestClient.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/_references.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/bootstrap.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery-ui-1.9.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery-ui-1.9.2.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery-ui-1.9.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery-ui-1.9.2.min.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery.qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery.qrcode.min.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/knockout-3.2.0.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/knockout-3.2.0.debug.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/knockout-3.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/knockout-3.2.0.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/respond.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Scripts/respond.min.js -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Startup.cs -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Views/Payment/AliPayDemo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Views/Payment/AliPayDemo.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Views/Payment/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Views/Payment/Index.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Views/Payment/WePay.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Views/Payment/WePay.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Views/Payment/WePayDemo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Views/Payment/WePayDemo.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Views/Web.config -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Web.Debug.config -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Web.Release.config -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/Web.config -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/favicon.ico -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/AW.Webapi.Sample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AW.Webapi.Sample/packages.config -------------------------------------------------------------------------------- /src/AlipayAndWepay.Net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/AlipayAndWepay.Net.sln -------------------------------------------------------------------------------- /src/ConsoleTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/ConsoleTest/App.config -------------------------------------------------------------------------------- /src/ConsoleTest/ConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/ConsoleTest/ConsoleTest.csproj -------------------------------------------------------------------------------- /src/ConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/ConsoleTest/Program.cs -------------------------------------------------------------------------------- /src/ConsoleTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBoo/AlipayandWepay-NETAPI/HEAD/src/ConsoleTest/Properties/AssemblyInfo.cs --------------------------------------------------------------------------------