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/NameValuePairList.cs')
-rw-r--r--docs/HtmlAgilityPack/NameValuePairList.cs101
1 files changed, 101 insertions, 0 deletions
diff --git a/docs/HtmlAgilityPack/NameValuePairList.cs b/docs/HtmlAgilityPack/NameValuePairList.cs
new file mode 100644
index 00000000000..f4776e9c758
--- /dev/null
+++ b/docs/HtmlAgilityPack/NameValuePairList.cs
@@ -0,0 +1,101 @@
+// HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
+using System;
+using System.Collections;
+
+namespace HtmlAgilityPack
+{
+ internal class NameValuePairList
+ {
+ #region Fields
+
+ internal readonly string Text;
+ private ArrayList _allPairs;
+ private Hashtable _pairsWithName;
+
+ #endregion
+
+ #region Constructors
+
+ internal NameValuePairList() :
+ this(null)
+ {
+ }
+
+ internal NameValuePairList(string text)
+ {
+ Text = text;
+ _allPairs = new ArrayList();
+ _pairsWithName = new Hashtable();
+
+ Parse(text);
+ }
+
+ #endregion
+
+ #region Internal Methods
+
+ internal static string GetNameValuePairsValue(string text, string name)
+ {
+ NameValuePairList l = new NameValuePairList(text);
+ return l.GetNameValuePairValue(name);
+ }
+
+ internal ArrayList GetNameValuePairs(string name)
+ {
+ if (name == null)
+ return _allPairs;
+ return _pairsWithName[name] as ArrayList;
+ }
+
+ internal string GetNameValuePairValue(string name)
+ {
+ if (name == null)
+ throw new ArgumentNullException();
+ ArrayList al = GetNameValuePairs(name);
+ if (al == null)
+ return null;
+
+ // return first item
+ NameValuePair nvp = al[0] as NameValuePair;
+ return nvp != null ? nvp.Value : string.Empty;
+ }
+
+ #endregion
+
+ #region Private Methods
+
+ private void Parse(string text)
+ {
+ _allPairs.Clear();
+ _pairsWithName.Clear();
+ if (text == null)
+ return;
+
+ string[] p = text.Split(';');
+ foreach (string pv in p)
+ {
+ if (pv.Length == 0)
+ continue;
+ string[] onep = pv.Split(new char[] {'='}, 2);
+ if (onep.Length==0)
+ continue;
+ NameValuePair nvp = new NameValuePair(onep[0].Trim().ToLower());
+
+ nvp.Value = onep.Length < 2 ? "" : onep[1];
+
+ _allPairs.Add(nvp);
+
+ // index by name
+ ArrayList al = _pairsWithName[nvp.Name] as ArrayList;
+ if (al == null)
+ {
+ al = new ArrayList();
+ _pairsWithName[nvp.Name] = al;
+ }
+ al.Add(nvp);
+ }
+ }
+
+ #endregion
+ }
+} \ No newline at end of file