代码拉取完成,页面将自动刷新
using HttpSocket;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace demo_win_httpsocket
{
partial class MainForm
{
void _11_SENDFILE(string userid,string filename)
{
_ShowMessage(System.Reflection.MethodInfo.GetCurrentMethod().Name);
var MediaId = _17_WEBWXUPLOADMEDIA(filename);
var type = MimeMapping.GetMimeMappingByFile(filename).ToLower();
//if(type.StartsWith("audio/"))
//{
//}
if (type.StartsWith("image/"))
{
//发送图片
_15_WEBWXSENDEMOTICON(userid, UserName, MediaId, 47);
}
else
{
var Message = "<appmsg appid='" + WEB["APPID"] + "' sdkver=''><title>{filename}</title><des></des><action></action><type>6</type><content></content><url></url><lowurl></lowurl><appattach><totallen>{filelength}</totallen><attachid>{attachid}</attachid><fileext>{filetype}</fileext></appattach><extinfo></extinfo></appmsg>";
Message = Message.Replace("{attachid}", MediaId);
Message = Message.Replace("{filename}", Path.GetFileName(filename));
Message = Message.Replace("{filelength}", "" + File.ReadAllBytes(filename).Length);
Message = Message.Replace("{filetype}", Path.GetExtension(filename).TrimStart(new char[] { '.' }));
_16_WEBWXSENDAPPMSG(userid, UserName, Message, 6);
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。