adTempus API
ArcanaDevelopment.adTempus.Client Namespace / Scheduler Class / ServerVersionIsAtLeast Method


In This Topic
    ServerVersionIsAtLeast Method
    In This Topic
    Determines whether the ServerVersion is greater than or equal to the specified version.
    Syntax
    'Declaration
     
    
    Public Function ServerVersionIsAtLeast( _
       ByVal major As Integer, _
       Optional ByVal minor As Integer, _
       Optional ByVal build As Integer, _
       Optional ByVal revision As Integer _
    ) As Boolean
    public bool ServerVersionIsAtLeast( 
       int major,
       int minor,
       int build,
       int revision
    )
    public:
    bool ServerVersionIsAtLeast( 
       int major,
       int minor,
       int build,
       int revision
    ) 

    Parameters

    major
    minor
    build
    revision
    Remarks
    This method is a shorthand for constructing a System.Version and comparing it to the ServerVersion. Use it to determine whether a feature is available on the connected server.
    See Also