reconnect property
String?
get
reconnect
Whether or not the VPN extension implements auto-reconnection.
If true, the linkDown
, linkUp
,
linkChanged
, suspend
, and resume
platform messages will be used to signal the respective events.
If false, the system will forcibly disconnect the VPN if the network
topology changes, and the user will need to reconnect manually.
(default: false)
This property is new in Chrome 51; it will generate an exception in earlier versions. try/catch can be used to conditionally enable the feature based on browser support.
Implementation
String? get reconnect => _wrapped.reconnect;
set
reconnect
(String? v)
Implementation
set reconnect(String? v) {
_wrapped.reconnect = v;
}