TryGetValue method

Retrieves a value corresponding to the supplied key from this SAConnectionStringBuilder.

Syntax
Visual Basic

Public Overrides Function TryGetValue( _
   ByVal keyword As String, _
   ByVal value As Object _
) As Boolean
C#

public override bool TryGetValue(
   string  keyword,
   object value
);
Parameters
  • keyword   The key of the item to retrieve.

  • value   The value corresponding to keyword.

Return value

true if keyword was found within the connection string; otherwise false.

See also