// "Therefore those skilled at the unorthodox
// are infinite as heaven and earth,
// inexhaustible as the great rivers.
// When they come to an end,
// they begin again,
// like the days and months;
// they die and are reborn,
// like the four seasons."
//
// - Sun Tsu,
// "The Art of War"
using System;
using System.Collections.Generic;
namespace TheArtOfDev.HtmlRenderer.Core.Entities
{
///
/// Raised when the user clicks on a link in the html.
///
public sealed class HtmlLinkClickedEventArgs : EventArgs
{
///
/// the link href that was clicked
///
private readonly string _link;
///
/// collection of all the attributes that are defined on the link element
///
private readonly Dictionary _attributes;
///
/// use to cancel the execution of the link
///
private bool _handled;
///
/// Init.
///
/// the link href that was clicked
///
public HtmlLinkClickedEventArgs(string link, Dictionary attributes)
{
_link = link;
_attributes = attributes;
}
///
/// the link href that was clicked
///
public string Link
{
get { return _link; }
}
///
/// collection of all the attributes that are defined on the link element
///
public Dictionary Attributes
{
get { return _attributes; }
}
///
/// use to cancel the execution of the link
///
public bool Handled
{
get { return _handled; }
set { _handled = value; }
}
///
///
///
///
public override string ToString()
{
return string.Format("Link: {0}, Handled: {1}", _link, _handled);
}
}
}