This method:
var xmlDocument = await XmlDocument.LoadFromUriAsync(new Uri("your XML url here"));
Suddenly stops working and always returns an exception:
An unhandled exception of type ‘System.Runtime.InteropServices.COMException’ occurred in mscorlib.dll
Additional information: Error HRESULT E_FAIL has been returned from a call to a COM component.
Is there another way to load xml document?
You can use Asynchronous XmlReader to read xml from uri link: