public DaxManager(String filePath, SynchronizationContext syncContext) { _document = DaxDocument.Load(filePath); _syncContext = syncContext; }
public void ReloadDocument() { try { _document = DaxDocument.Load(_document.FilePath); } catch (Exception ex) { DoErrorEvent(ex); } }