本文介绍了什么是C#中的RestClient以及如何使用它在任何手机中发送短信的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

public class MobileSMS
{
    public MobileSMS() { }

    public void SendMessage(string MobileNumber, string Message)
    {
        if (bool.Parse(ConfigurationManager.AppSettings["SendSMS"]))
        {
            try
            {
                RestClient rClient = new RestClient("1256", "123", RestClient.ENV_PRODUCTION);
                Hashtable result = rClient.sendSMS(Message, MobileNumber, "Cash Club", 72, "", "");
            }
            catch
            {
            }
        }       
    }
}



这是这里的代码我无法理解这个restclient是如何工作的


this is the code here i am unable to understand how this restclient is working

推荐答案


这篇关于什么是C#中的RestClient以及如何使用它在任何手机中发送短信的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 13:20