ParameterDictionary.Item PropertyParameterDictionary.Item PropertyParameterDictionary::Item Property
- XmlPrime 5.0
- Other Versions ▼
Gets or sets the value of the parameter with the specified name.
Syntax
Public Property Item As IEnumerable(Of System.Xml.XPath.XPathItem) ( name As System.Xml.XmlQualifiedName _ ) Get Set(ByVal value As IEnumerable(Of System.Xml.XPath.XPathItem))
public IEnumerable<System.Xml.XPath.XPathItem> this [ System.Xml.XmlQualifiedName name ] { get; set; }
public: property IEnumerable<System.Xml.XPath::XPathItem^>^ Item { virtual IEnumerable<System.Xml.XPath::XPathItem^>^ get() sealed; virtual void set(IEnumerable<System.Xml.XPath::XPathItem^>^ value) sealed; }
Parameters
- name
Type: System.Xml.XmlQualifiedNameSystem.Xml.XmlQualifiedNameSystem.Xml::XmlQualifiedName^
The name of the parameter to get or set.
Property Value
Type: System.Collections.Generic.IEnumerable<T>System.Collections.Generic.IEnumerable(Of T)System.Collections.Generic::IEnumerable<T>^
The value of the parameter with the specified name.
Exceptions
Exception | Condition |
ArgumentNullExceptionArgumentNullExceptionArgumentNullException |
name or the supplied value is null
a null reference (Nothing in Visual Basic)
nullptr .
|
KeyNotFoundExceptionKeyNotFoundExceptionKeyNotFoundException | The property is retrieved and the parameter with the specified name is not found. |