我有CUSTOM azure 混合连接侦听器服务在本地运行,并按照 MSDN 的建议使用下面提到的代码,但是当本地 INTERNET连接中断时,侦听器没有重新建立。
10 次中只有 1 次,当本地 INTERNET中断时,使用以下代码重新建立侦听器
// Opening the listener establishes the control channel to
// the Azure Relay service. The control channel is continuously
// maintained, and is reestablished when connectivity is disrupted
await listener.OpenAsync(cts.Token);
//Below delegate not getting called when INTERNET plugged off from
//listener running machine
listener.Offline += listener_Offline;
10 次中有 10 次重新建立监听器到 azure 混合连接需要哪些更改?请指教。