using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; namespace BWP.ABCClient.B2C.OnlineRemits { public class OnlineRemitConfig { /// /// 网上支付平台通讯方式(http / https) /// public static string TrustPayConnectMethod { get { return "https"; } } /// /// 网上支付平台服务器名 /// public static string TrustPayServerName { get { return "www.95599.cn"; } } /// /// 网上支付平台交易端口 /// public static int TrustPayServerPort { get { return 443; } } public static string TrustPayTrxURL { get { return "/b2c/trustpay/ReceiveMerchantTrxReqServlet"; } } /// /// 得到商户的签名 /// /// /// internal static RSACryptoServiceProvider GetMerchantKey(string MerchantID) { throw new NotImplementedException(); } /// /// 得到农行公钥 /// /// internal static X509Certificate2 GetCertificate() { throw new NotImplementedException(); } } }