/// <summary> /// Gets the XML for an ESD controlled list or mapping, cacheing it if possible /// </summary> /// <param name="xmlFileUri">The URI of the XML file.</param> /// <returns> /// Populated XML document, or null if not found /// </returns> public static EsdXmlDocument GetEsdDocument(Uri xmlFileUri) { return(EsdXmlDocument.GetEsdDocument(xmlFileUri, false)); }
/// <summary> /// Gets the XML for an ESD controlled list or mapping, cacheing it if possible /// </summary> /// <param name="configKey">Key for XML file name <Escc.Web.Metadata/ControlledListXml> section of web.config</param> /// <returns>Populated XML document, or null if not found</returns> public static EsdXmlDocument GetEsdDocument(string configKey) { return(EsdXmlDocument.GetEsdDocument(configKey, false)); }