NinjaScript > Language Reference > Strategy >

DisconnectDelaySeconds

Print this Topic Previous pageReturn to chapter overviewNext page

Definition

Indicates the amount of time a disconnect would have to last before certain connection loss handling actions will be taken

 

Property Value

An int value represents the time required for a disconnect to last before connection loss handling actions will occur.

 

Syntax

DisconnectDelaySeconds

 

 

Examples

protected override void Initialize()
{

    // Disconnect has to be at least 10 seconds
    DisconnectDelaySeconds = 10;
}