ParameterDictionary.Add Method (XmlQualifiedName, IXPathNavigable[])ParameterDictionary.Add Method (XmlQualifiedName, IXPathNavigable())ParameterDictionary::Add Method (XmlQualifiedName^, array
<IXPathNavigable^>^)
Syntax
Public Sub Add( _ name As System.Xml.XmlQualifiedName, _ values As System.Xml.XPath.IXPathNavigable[] _ )
public void Add( System.Xml.XmlQualifiedName name, System.Xml.XPath.IXPathNavigable[] values )
public: void Add( System.Xml::XmlQualifiedName^ name, array<System.Xml.XPath::IXPathNavigable^> values )
Parameters
- name
Type: System.Xml.XmlQualifiedNameSystem.Xml.XmlQualifiedNameSystem.Xml::XmlQualifiedName^
The name of the parameter to add.
- values
Type: System.Xml.XPath.IXPathNavigable[]System.Xml.XPath.IXPathNavigable()
array
<System.Xml.XPath::IXPathNavigable^>^The items making up the value of the parameter to add.
Exceptions
Exception | Condition |
ArgumentNullExceptionArgumentNullExceptionArgumentNullException |
name or values is null
a null reference (Nothing in Visual Basic)
nullptr .
|
ArgumentExceptionArgumentExceptionArgumentException |
An entry in values is null
a null reference (Nothing in Visual Basic)
nullptr , or
a parameter with name name already exists.
|