adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / ConnectionDescriptor Class / GetAdditionalProperty Method
The value returned if the key is not found.


In This Topic
    GetAdditionalProperty Method (ConnectionDescriptor)
    In This Topic
    Gets the value from AdditionalProperties with the specified key.
    Syntax
    'Declaration
     
    
    <CanBeNullAttribute()>
    Public Function GetAdditionalProperty( _
       ByVal key As String, _
       Optional ByVal defaultValue As String _
    ) As String
    [CanBeNull()]
    public string GetAdditionalProperty( 
       string key,
       string defaultValue
    )
    [CanBeNull()]
    public:
    String^ GetAdditionalProperty( 
       String^ key,
       String^ defaultValue
    ) 

    Parameters

    key
    defaultValue
    The value returned if the key is not found.

    Return Value

    The value for the specified key, or defaultValue if the key is not found.
    See Also