cn.jpush.api.device.DeviceClient.removeDeviceTags C# (CSharp) Method

removeDeviceTags() public method

public removeDeviceTags ( String registrationId, HashSet tags ) : cn.jpush.api.common.resp.DefaultResult
registrationId String
tags HashSet
return cn.jpush.api.common.resp.DefaultResult
        public DefaultResult removeDeviceTags(String registrationId, HashSet<String> tags)
        {
            String alias = null;
            String mobile = null;
            HashSet<String> tagsToAdd = null;
            HashSet<String> tagsToRemove = tags;
            return updateDevice(registrationId, alias, mobile, tagsToAdd, tagsToRemove);
        }