dotConnect for SQL Server Documentation
Devart.Data.SqlServer Namespace / SqlConnectionStringBuilder Class / TryGetValue Method
Key name to obtain the value.
Value of the key. If operation fails, the value is null.

In This Topic
    TryGetValue Method
    In This Topic
    Attempts to get a key value.
    Syntax
    'Declaration
     
    Public Overrides Function TryGetValue( _
       ByVal keyword As String, _
       ByRef value As Object _
    ) As Boolean
    public override bool TryGetValue( 
       string keyword,
       out object value
    )

    Parameters

    keyword
    Key name to obtain the value.
    value
    Value of the key. If operation fails, the value is null.

    Return Value

    true if the operation is successful; false otherwise.
    See Also