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

addDeviceTags() public method

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