C# Class UrbanAirship.NETStandard.Channel.TagEditor

Class used for modifying channel tags.
Exibir arquivo Open project: urbanairship/urbanairship-xamarin

Public Methods

Method Description
AddTag ( string tag ) : TagEditor

Add a tag to the device.

AddTags ( ICollection tags ) : TagEditor

Add tags to the device.

Apply ( ) : void

Apply the tag changes.

Clear ( ) : TagEditor

Clear tags before executing add/remove operations.

RemoveTag ( string tag ) : TagEditor

Remove a tag from the device

RemoveTags ( ICollection tags ) : TagEditor

Remove tags from the device.

TagEditor ( Action onApply ) : System

Method Details

AddTag() public method

Add a tag to the device.
public AddTag ( string tag ) : TagEditor
tag string The tag to add.
return TagEditor

AddTags() public method

Add tags to the device.
public AddTags ( ICollection tags ) : TagEditor
tags ICollection Tags to add.
return TagEditor

Apply() public method

Apply the tag changes.
public Apply ( ) : void
return void

Clear() public method

Clear tags before executing add/remove operations.
public Clear ( ) : TagEditor
return TagEditor

RemoveTag() public method

Remove a tag from the device
public RemoveTag ( string tag ) : TagEditor
tag string Tag to remove.
return TagEditor

RemoveTags() public method

Remove tags from the device.
public RemoveTags ( ICollection tags ) : TagEditor
tags ICollection Tags to remove.
return TagEditor

TagEditor() public method

public TagEditor ( Action onApply ) : System
onApply Action
return System