dotConnect for PostgreSQL Documentation
Devart.Common Namespace / DbConnectionStringBuilder Class / Item Property
The key of the item to get or set.

In This Topic
    Item Property (DbConnectionStringBuilder)
    In This Topic
    Gets or sets the value associated with the specified key.
    Syntax
    'Declaration
     
    Public Overrides Default Property Item( _
       ByVal keyword As String _
    ) As Object
    public override object this[ 
       string keyword
    ]; {get; set;}

    Parameters

    keyword
    The key of the item to get or set.

    Property Value

    Value associated with the specified key.
    Remarks
    If the specified key is not found, trying to get it returns null, and trying to set it creates a new element using the specified key. Assigning a null value removes the key/value pair.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also