Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/HtmlAgilityPack/NameValuePair.cs')
-rw-r--r--docs/HtmlAgilityPack/NameValuePair.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/HtmlAgilityPack/NameValuePair.cs b/docs/HtmlAgilityPack/NameValuePair.cs
new file mode 100644
index 00000000000..8b7036363ca
--- /dev/null
+++ b/docs/HtmlAgilityPack/NameValuePair.cs
@@ -0,0 +1,35 @@
+// 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
+ }
+} \ No newline at end of file