Exemple #1
0
    public static string MSGSend(string msgtype, string userssid, string userid, string username, string phone, string msg, string sendtime, string sysid, string mark)
    {
        WebRequestHelper             h    = new WebRequestHelper();
        IDictionary <string, string> dict = new Dictionary <string, string>();

        dict.Add("msgtype", msgtype);
        dict.Add("userssid", userssid);
        dict.Add("userid", userid);
        dict.Add("username", username);
        dict.Add("phone", phone);
        dict.Add("msg", msg);
        dict.Add("sendtime", sendtime);
        dict.Add("sysid", sysid);
        dict.Add("mark", mark);
        return(h.DoPost(ServiceAddress, dict));
    }