82 lines
2.2 KiB
C#
82 lines
2.2 KiB
C#
|
|
// "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
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Raised when the user clicks on a link in the html.
|
||
|
|
/// </summary>
|
||
|
|
public sealed class HtmlLinkClickedEventArgs : EventArgs
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// the link href that was clicked
|
||
|
|
/// </summary>
|
||
|
|
private readonly string _link;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// collection of all the attributes that are defined on the link element
|
||
|
|
/// </summary>
|
||
|
|
private readonly Dictionary<string, string> _attributes;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// use to cancel the execution of the link
|
||
|
|
/// </summary>
|
||
|
|
private bool _handled;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Init.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="link">the link href that was clicked</param>
|
||
|
|
/// <param name="attributes"></param>
|
||
|
|
public HtmlLinkClickedEventArgs(string link, Dictionary<string, string> attributes)
|
||
|
|
{
|
||
|
|
_link = link;
|
||
|
|
_attributes = attributes;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// the link href that was clicked
|
||
|
|
/// </summary>
|
||
|
|
public string Link
|
||
|
|
{
|
||
|
|
get { return _link; }
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// collection of all the attributes that are defined on the link element
|
||
|
|
/// </summary>
|
||
|
|
public Dictionary<string, string> Attributes
|
||
|
|
{
|
||
|
|
get { return _attributes; }
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// use to cancel the execution of the link
|
||
|
|
/// </summary>
|
||
|
|
public bool Handled
|
||
|
|
{
|
||
|
|
get { return _handled; }
|
||
|
|
set { _handled = value; }
|
||
|
|
}
|
||
|
|
/// <summary>
|
||
|
|
///
|
||
|
|
/// </summary>
|
||
|
|
/// <returns></returns>
|
||
|
|
public override string ToString()
|
||
|
|
{
|
||
|
|
return string.Format("Link: {0}, Handled: {1}", _link, _handled);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|