ControlChannelTrigger.CurrentKeepAliveIntervalInMinutes Property

Definition

Gets the network keep-alive interval, in minutes, maintained by low-level network components in the TCP stack based on current network conditions.

Note

The ControlChannelTrigger class is not supported on Windows Phone.

public:
 property unsigned int CurrentKeepAliveIntervalInMinutes { unsigned int get(); };
uint32_t CurrentKeepAliveIntervalInMinutes();
public uint CurrentKeepAliveIntervalInMinutes { get; }
var uInt32 = controlChannelTrigger.currentKeepAliveIntervalInMinutes;
Public ReadOnly Property CurrentKeepAliveIntervalInMinutes As UInteger

Property Value

UInt32

unsigned int

uint32_t

The network keep-alive interval, in minutes, maintained by low-level network components in the TCP stack based on current network conditions.

Remarks

The CurrentKeepAliveIntervalInMinutes property represents the network keep-alive interval, in minutes, maintained by low-level network components in the TCP stack based on current network conditions. This value represents the value needed by network intermediaries to keep the TCP connection intact. These network intermediaries represent hardware and devices such as network proxies and network address translators. A network app cannot set this value, since this value is determined dynamically by low-level system components in the TCP stack . However, a network app can indicate to the system that the network keep-alive timer should be decreased if established TCP connections are regularly dropped by calling the DecreaseNetworkKeepAliveInterval method on the ControlChannelTrigger class.

Applies to

See also