如果网络连接失败,请检查直到连接或直到按取消按钮

时间:2018-06-11 08:47:14

标签: vb.net

我正在检查NetworkInterface.GetIsNetworkAvailable的网络可用性。如果连接失败错误消息触发器。

我想知道,如果用户单击“重试按钮”,该检查将如何继续。几分钟后,我想在连接失败后再次触发此消息。再次继续相同的过程,直到连接或用户按下CANCEL按钮。

我的示例代码可在下面找到。

If Not NetworkInterface.GetIsNetworkAvailable Then ' Network Connectivity Not-Available            
    Dim msgResultC As MsgBoxResult = MessageBox.Show("No Network Connectivity.", MessageBoxButtons.RetryCancel, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1)
    If msgResultC = MsgBoxResult.Retry Then

0 个答案:

没有答案