a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
35 lines
686 B
C#
35 lines
686 B
C#
// HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
|
|
namespace HtmlAgilityPack
|
|
{
|
|
internal class NameValuePair
|
|
{
|
|
#region Fields
|
|
|
|
internal readonly string Name;
|
|
internal string Value;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal NameValuePair()
|
|
{
|
|
}
|
|
|
|
internal NameValuePair(string name)
|
|
:
|
|
this()
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
internal NameValuePair(string name, string value)
|
|
:
|
|
this(name)
|
|
{
|
|
Value = value;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |