示例#1
0
文件: WorkSpace.cs 项目: BgRva/Blob1
 internal void _pipesMgr_Cleared(IPipes sender, ClearEventArgs ea)
 {
     throw new NotImplementedException("The method or operation is not implemented.");
 }
示例#2
0
文件: WorkSpace.cs 项目: BgRva/Blob1
 internal void _utilitiesMgr_Clearing(IUtilitiesMgr sender, ClearEventArgs ea)
 {
     throw new NotImplementedException("The method or operation is not implemented.");
 }
示例#3
0
文件: WorkSpaces.cs 项目: BgRva/Blob1
 /// <summary>
 /// Triggers the Clearing event.
 /// </summary>
 public virtual void OnClearing(ClearEventArgs ea)
 {
     if (Clearing != null)
         Clearing(this, ea);
 }
示例#4
0
文件: WorkSpaces.cs 项目: BgRva/Blob1
 /// <summary>
 /// Triggers the Cleared event.
 /// </summary>
 public virtual void OnCleared(ClearEventArgs ea)
 {
     if (Cleared != null)
         Cleared(this, ea);
 }
示例#5
0
 public void Clearying_DummyHandlerWhichThrows(object sender, ClearEventArgs ea)
 {
     throw new Exception("The method or operation is not implemented.");
 }
示例#6
0
 public void Cleared_DummyHandler(object sender, ClearEventArgs ea)
 {
     //throw new Exception("The method or operation is not implemented.");
 }
示例#7
0
文件: AppCore.cs 项目: BgRva/Blob1
 internal void _WorkSpaceMgr_Clearing(IWorkSpaces sender, ClearEventArgs ea)
 {
     throw new NotImplementedException("The method or operation is not implemented.");
 }