コード例 #1
0
 private SendSMS GetSMSConf()
 {
     SMSConfigManager ssm = new SMSConfigManager();
     return ssm.GetSMSconfig(Server.MapPath("../xml/SendSMS.xml"));
 }
コード例 #2
0
 private void BindConf()
 {
     SMSConfigManager ssm = new SMSConfigManager();
     SendSMS sms = new SendSMS();
     sms = ssm.GetSMSconfig(Server.MapPath("../xml/SendSMS.xml"));
     serverip.Text = sms.Ip;
     port.Text = sms.Port;
 }