Ejemplo n.º 1
0
 /// <summary>
 /// Called by the server-side DataPortal after calling the requested DataPortal_XYZ method.
 /// </summary>
 /// <param name="e">The DataPortalContext object passed to the DataPortal.</param>
 protected override void DataPortal_OnDataPortalInvokeComplete(Csla.DataPortalEventArgs e)
 {
     if (ApplicationContext.ExecutionLocation == ApplicationContext.ExecutionLocations.Server &&
         e.Operation == DataPortalOperations.Update)
     {
         // this runs on the server
         DocTypeList.InvalidateCache();
         DocTypeNVL.InvalidateCache();
     }
 }
Ejemplo n.º 2
0
 private void OnDocTypeEditCollSaved(object sender, Csla.Core.SavedEventArgs e)
 {
     // this runs on the client
     DocTypeList.InvalidateCache();
     DocTypeNVL.InvalidateCache();
 }