DetectedFacet Type
A facet detected in rich text, with UTF-8 byte offsets and extracted content. Byte offsets are used rather than character indices because the AT Protocol specifies facet positions in UTF-8 byte coordinates.
Union cases
| Union case |
Description
|
Full Usage:
DetectedLink(byteStart, byteEnd, uri)
Parameters:
int
byteEnd : int
uri : string
|
A link (http:// or https://) detected in text.
|
Full Usage:
DetectedMention(byteStart, byteEnd, handle)
Parameters:
int
byteEnd : int
handle : string
|
A mention (@handle) detected in text.
|
Full Usage:
DetectedTag(byteStart, byteEnd, tag)
Parameters:
int
byteEnd : int
tag : string
|
A hashtag (#tag) detected in text.
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsDetectedLink
Returns: bool
|
|
Full Usage:
this.IsDetectedMention
Returns: bool
|
|
Full Usage:
this.IsDetectedTag
Returns: bool
|
|