in MiddlemanElectronSampleApp/AppServiceHost/AppServiceUWP/App.xaml.cs [220:233]
private void DataConnectionResetConnection()
{
if (_dataConnection != null)
{
if (_dataConnectionDeferral != null)
{
_dataConnectionDeferral.Complete();
_dataConnectionDeferral = null;
}
_dataConnection.Dispose();
_dataConnection = null;
}
SendStatusAsync();
}