HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
API Reference

Get Tags

Retrieve the tags attached to the upcoming report using this method. This method returns an array of strings.

let tags = Luciq.getTags()
NSString *tags = [Luciq getTags];
Luciq.getTags();
Luciq.getTags();
Luciq.getTags(function (tags) {
  // `tags` is the returned values
});
Luciq.getTags();
//iOS
NSArray tags = Luciq.GetTags();

//Android
IList<string> tags = Luciq.Tags;