Mimer SQL Data Provider
TryGetValue Method




Mimer.Data.Client Namespace > MimerConnectionStringBuilder Class : TryGetValue Method
The keyword to locate.
The value corresponding to the keyword or null.
Return the value for a specific key from the MimerConnectionStringBuilder.
Syntax
'Declaration
 
Public Overrides NotOverridable Function TryGetValue( _
   ByVal keyword As String, _
   ByRef value As Object _
) As Boolean
public override bool TryGetValue( 
   string keyword,
   out object value
)
public function TryGetValue( 
    keyword: String;
   Out  value: TObject
): Boolean; override; 
public override function TryGetValue( 
   keyword : String,
   value : Object
) : boolean;
public: bool TryGetValue( 
   string* keyword,
   [PARAMFLAG::Out] Object* value
) override 

Parameters

keyword
The keyword to locate.
value
The value corresponding to the keyword or null.

Return Value

true if the key was found; otherwise false.
Remarks
This method may be called without first calling ContainsKey as it does not throw an exception if the key does not exist.
Requirements

.NET Framework
Version 2.0 or later

See Also

Reference

MimerConnectionStringBuilder Class
MimerConnectionStringBuilder Members