adTempus API
ArcanaDevelopment.adTempus.Client Namespace / Scheduler Class / GetServerPropertyInt Method
The name of the property to return. See Remarks.


In This Topic
    GetServerPropertyInt Method
    In This Topic
    Returns the server property with the specified key.
    Syntax
    'Declaration
     
    
    Public Function GetServerPropertyInt( _
       ByVal key As String _
    ) As Nullable(Of Integer)
    public Nullable<int> GetServerPropertyInt( 
       string key
    )
    public:
    Nullable<int> GetServerPropertyInt( 
       String^ key
    ) 

    Parameters

    key
    The name of the property to return. See Remarks.

    Return Value

    The value of the requested property, or a null reference (Nothing in Visual Basic) if the property does not exist.
    Remarks
    The following key values are defined:
    databasetype The type of database that adTempus is using. This will be a value from ArcanaDevelopment.adTempus.Shared.DatabaseType.
    See Also