AdoDotNetConnectionProperties.IDictionary.Item Property
Retrieves an item, or element, with the specified key from the current IDictionaryinstance.
Namespace: Microsoft.VisualStudio.Data.AdoDotNet
Assembly: Microsoft.VisualStudio.Data (in Microsoft.VisualStudio.Data.dll)
Syntax
'Declaration
Private Property Item ( _
key As Object _
) As Object Implements IDictionary.Item
Object IDictionary.this[
Object key
] { get; set; }
private:
virtual property Object^ Item[Object^ key] {
Object^ get (Object^ key) sealed = IDictionary::Item::get;
void set (Object^ key, Object^ value) sealed = IDictionary::Item::set;
}
private abstract Item :
key:Object -> Object with get, set
private override Item :
key:Object -> Object with get, set
JScript does not support explicit interface implementations.
Parameters
key
Type: System.ObjectThe key on which to locate an item.
Property Value
Type: System.Object
Returns the element with the specified key.
Implements
Remarks
This method provides an implementation of the Item property. For more information see the Item property in the .NET Framework class library.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.