Mono.Upcoming.AuthenticatedConnection.AddTagsToEvent C# (CSharp) Method

AddTagsToEvent() public method

public AddTagsToEvent ( Event event_to_edit, string tags ) : void
event_to_edit Event
tags string
return void
        public void AddTagsToEvent(Event event_to_edit, string tags)
        {
            Util.Post ("event.addTags", new UpcomingParam ("token", Token.TokenString),
                new UpcomingParam ("event_id", event_to_edit.ID),
                new UpcomingParam ("tags", tags));
        }