コード例 #1
0
ファイル: Push.cs プロジェクト: SHWDTech/ChargingPileManager
        public static bool SendNotyPopMsgToList(List <string> clientidlist, string title, string content, string poptitle, string popcontent, string downloadtitle, string downloadurl)
        {
            NotyPopLoadTemplate notyPopTemplate = Push.GetNotyPopTemplate(title, content, poptitle, popcontent, downloadtitle, downloadurl);

            return(Push.PushMsgToList(clientidlist, notyPopTemplate));
        }
コード例 #2
0
ファイル: Push.cs プロジェクト: SHWDTech/ChargingPileManager
        public static bool SendNotyPopMsgToSingle(string clientid, string title, string content, string poptitle, string popcontent, string downloadtitle, string downloadurl)
        {
            NotyPopLoadTemplate notyPopTemplate = Push.GetNotyPopTemplate(title, content, poptitle, popcontent, downloadtitle, downloadurl);

            return(Push.PushMsgToSingleDevice(clientid, notyPopTemplate));
        }