ConstructorIO.ConstructorIOAPI.RemoveBatch C# (CSharp) Method

RemoveBatch() public method

Removed multiple items from your autocomplete.
public RemoveBatch ( IEnumerable Items, ListItemAutocompleteType AutocompleteSection ) : bool
Items IEnumerable
AutocompleteSection ListItemAutocompleteType The autocomplete section to remove from.
return bool
        public bool RemoveBatch(IEnumerable<ListItem> Items, ListItemAutocompleteType AutocompleteSection)
        {
            return RemoveBatch(Items, StringEnum.GetStringValue(AutocompleteSection));
        }

Same methods

ConstructorIOAPI::RemoveBatch ( IEnumerable Items, string AutocompleteSection ) : bool