예제 #1
0
파일: DaxManager.cs 프로젝트: arusland/dax
 public DaxManager(String filePath, SynchronizationContext syncContext)
 {
     _document = DaxDocument.Load(filePath);
     _syncContext = syncContext;
 }
예제 #2
0
파일: DaxManager.cs 프로젝트: arusland/dax
 public void ReloadDocument()
 {
     try
     {
         _document = DaxDocument.Load(_document.FilePath);
     }
     catch (Exception ex)
     {
         DoErrorEvent(ex);
     }
 }