ParameterDictionary.Add Method (XmlQualifiedName, IEnumerable<XPathNavigator>)ParameterDictionary.Add Method (XmlQualifiedName, IEnumerable(Of XPathNavigator))ParameterDictionary::Add Method (XmlQualifiedName^, IEnumerable<XPathNavigator^>^)
- XmlPrime 5.0
- Other Versions ▼
Adds a parameter with the specified name.
Syntax
Public Sub Add( _ key As System.Xml.XmlQualifiedName, _ value As IEnumerable(Of System.Xml.XPath.XPathNavigator) _ )
public void Add( System.Xml.XmlQualifiedName key, IEnumerable<System.Xml.XPath.XPathNavigator> value )
public: void Add( System.Xml::XmlQualifiedName^ key, IEnumerable<System.Xml.XPath::XPathNavigator^>^ value )
Parameters
- key
Type: System.Xml.XmlQualifiedNameSystem.Xml.XmlQualifiedNameSystem.Xml::XmlQualifiedName^
The name of the parameter.
- value
Type: System.Collections.Generic.IEnumerable<T>System.Collections.Generic.IEnumerable(Of T)System.Collections.Generic::IEnumerable<T>^
The value of the parameter to add.
Exceptions
Exception | Condition |
ArgumentNullExceptionArgumentNullExceptionArgumentNullException |
key or value is null
a null reference (Nothing in Visual Basic)
nullptr .
|
ArgumentExceptionArgumentExceptionArgumentException |
An parameter with the same name already exists in the ParameterDictionaryParameterDictionaryParameterDictionary, or an entry in
value is null
a null reference (Nothing in Visual Basic)
nullptr
|