cn.jpush.api.JPushClient.deleteTag C# (CSharp) Method

deleteTag() public method

删除一个标签,以及标签与设备之间的关联关系
包含http错误码:如401,404等,错误信息,JPush returen code和JPush returen mssage 包含错误的信息
public deleteTag ( String theTag, String platform ) : cn.jpush.api.common.resp.DefaultResult
theTag String 要删除的tag
platform String 可选参数,不填则默认为所有平台
return cn.jpush.api.common.resp.DefaultResult
        public DefaultResult deleteTag(String theTag, String platform)
        {
            return _deviceClient.deleteTag(theTag, platform);
        }