**** Merged from MCS ****
[mono-project.git] / mcs / class / System.XML / System.Xml.Query / XmlArgumentList.cs
blob1a82a48f2e15da65c6984c4d3afc2a4695d4cd79
1 //
2 // System.Xml.Query.XmlArgumentList
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 // Atsushi Enomoto (atsushi@ximian.com)
7 //
8 // Copyright (C) Tim Coleman, 2003
9 // Copyright (C) Novell Inc, 2004
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 #if NET_2_0
35 using System.Collections;
36 using System.Xml;
38 namespace System.Xml.Query
40 public sealed class XmlArgumentList
42 #region Fields
44 Hashtable extensionObjects;
45 Hashtable parameters;
47 #endregion // Fields
49 #region Constructors
51 [MonoTODO]
52 public XmlArgumentList ()
54 extensionObjects = new Hashtable ();
55 parameters = new Hashtable ();
58 #endregion // Constructors
60 #region Methods
62 [MonoTODO ("Confirm name conflicts")]
63 public void AddExtensionObject (string namespaceUri, object value)
65 extensionObjects.Add (namespaceUri, value);
68 [MonoTODO ("Confirm name conflicts")]
69 public void AddParameter (string localName, string namespaceUri, object value)
71 parameters.Add (new XmlQualifiedName (localName, namespaceUri), value);
74 public void ClearExtensionObjects ()
76 extensionObjects.Clear ();
79 public void ClearParameters ()
81 parameters.Clear ();
84 public object GetExtensionObject (string namespaceUri)
86 return extensionObjects [namespaceUri];
89 [MonoTODO ("Performance")]
90 public object GetParameter (string localName, string namespaceUri)
92 return parameters [new XmlQualifiedName (localName, namespaceUri)];
95 [MonoTODO]
96 public void RemoveExtensionObject (string namespaceUri)
98 extensionObjects.Remove (namespaceUri);
101 [MonoTODO]
102 public void RemoveParameter (string localName, string namespaceUri)
104 parameters.Remove (new XmlQualifiedName (localName, namespaceUri));
107 [MonoTODO]
108 public void SetExtensionObject (string namespaceUri, object value)
110 extensionObjects [namespaceUri] = value;
113 [MonoTODO]
114 public void SetParameter (string localName, string namespaceUri, object value)
116 parameters [new XmlQualifiedName (localName, namespaceUri)] = value;
119 #endregion // Methods
123 #endif // NET_2_0