コード例 #1
0
ファイル: IAPIModel.cs プロジェクト: SuperKLA/Jamming
 protected void DestroyServices(IAPIEntityService service)
 {
     if (service is IAPIController)
     {
         var apiCon = service as IAPIController;
         apiCon.OnDestroy(this);
     }
 }
コード例 #2
0
 protected async Task DestroyServices(IAPIEntityService service)
 {
     if (service is IAPIController)
     {
         var apiCon = service as IAPIController;
         await apiCon.OnDestroy(this);
     }
 }