adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / Message Class / GetAdditionalProperty Method / GetAdditionalProperty(String,String) Method
The case-insensitive name of the property to get
The default value to return if the property does not exist in this message.


In This Topic
    GetAdditionalProperty(String,String) Method
    In This Topic
    Returns the property with the specified name, or the defaultValue if the property is not defined for this message.
    Syntax
    'Declaration
     
    
    <CanBeNullAttribute()>
    Public Overloads Function GetAdditionalProperty( _
       ByVal name As String, _
       ByVal defaultValue As String _
    ) As String
    [CanBeNull()]
    public string GetAdditionalProperty( 
       string name,
       string defaultValue
    )
    [CanBeNull()]
    public:
    String^ GetAdditionalProperty( 
       String^ name,
       String^ defaultValue
    ) 

    Parameters

    name
    The case-insensitive name of the property to get
    defaultValue
    The default value to return if the property does not exist in this message.
    See Also