Add ConfidenceLevel to ContentLinkHandler so it can state how confident it is at handling the link. This would allow users of library to filter out handlers based on their desired confidence level.
enum ConfidenceLevel {
HIGH, // Uses Official APIs
MEDIUM, // Uses Unofficial APIs
LOW, // Uses url to parse Content
}