CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
AsyncFactoryDelegates.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="AsyncFactoryDelegates.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Delegate for an asynchronous business object </summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Linq;
11using System.Text;
12
13namespace Csla.Core
14{
25 public delegate void AsyncFactoryDelegate<R>(EventHandler<DataPortalResult<R>> completed);
38 public delegate void AsyncFactoryDelegate<T, R>(T arg, EventHandler<DataPortalResult<R>> completed);
39}
DataPortalResult defines the results of DataPortal operation.
delegate void AsyncFactoryDelegate< R >(EventHandler< DataPortalResult< R > > completed)
Delegate for an asynchronous business object factory method with n parameters.
delegate void AsyncFactoryDelegate< T, R >(T arg, EventHandler< DataPortalResult< R > > completed)
Delegate for an asynchronous business object factory method with n parameters.