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

removeDevicesFromTag() public method

public removeDevicesFromTag ( String theTag, HashSet toRemoveUsers ) : cn.jpush.api.common.resp.DefaultResult
theTag String
toRemoveUsers HashSet
return cn.jpush.api.common.resp.DefaultResult
        public DefaultResult removeDevicesFromTag(String theTag, HashSet<String> toRemoveUsers)
        {
            HashSet<String> toAddUsers = null;
            return addRemoveDevicesFromTag(theTag, toAddUsers, toRemoveUsers);
        }