/****************************************************************************/ public static async Task <XmlDocument> LoadFileAsync(string strPath) { string strXml = await DiskFile.LoadFileAsync(strPath); XmlDocument objDocument = new XmlDocument(); objDocument.LoadXml(strXml); return(objDocument); }