/// <summary> /// Get the capabilities structure from the dap server /// </summary> /// <param name="hCapabilities">The capabilities of the dap server</param> /// <param name="progressCallBack">Progress handler (may be null)</param> public void GetCapabilities(out Capabilities hCapabilities, UpdateProgessCallback progressCallBack) { System.Xml.XmlDocument hResponse = null; hCapabilities = null; hResponse = GetCapabilities(progressCallBack); hCapabilities = new Capabilities(hResponse); }
/// <summary> /// Get the capabilities structure from the dap server /// </summary> /// <param name="hCapabilities">The capabilities of the dap server</param> public void GetCapabilities(out Capabilities hCapabilities) { GetCapabilities(out hCapabilities, null); }