dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlDependency Class / PgSqlDependency Constructor / PgSqlDependency Constructor(PgSqlCommand,Int32)
The PgSqlCommand object to associate with this PgSqlDependency object.
A positive integer that represents server check interval in milliseconds. The default value is 30000 (30 seconds).

In This Topic
    PgSqlDependency Constructor(PgSqlCommand,Int32)
    In This Topic
    Creates a new instance of the PgSqlDependency class, associates it with the PgSqlCommand parameter, and specifies a timeout value.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal command As PgSqlCommand, _
       ByVal checkTimeout As Integer _
    )
    public PgSqlDependency( 
       PgSqlCommand command,
       int checkTimeout
    )

    Parameters

    command
    The PgSqlCommand object to associate with this PgSqlDependency object.
    checkTimeout
    A positive integer that represents server check interval in milliseconds. The default value is 30000 (30 seconds).
    See Also