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
//-----------------------------------------------------------------------
8
using
System;
9
using
System.Collections.Generic;
10
using
System.Linq;
11
using
System.Text;
12
13
namespace
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
}
Csla.DataPortalResult
DataPortalResult defines the results of DataPortal operation.
Definition:
DataPortalResult.cs:20
Csla.Core
Definition:
AddedNewEventArgs.cs:11
Csla.Core.AsyncFactoryDelegate< R >
delegate void AsyncFactoryDelegate< R >(EventHandler< DataPortalResult< R > > completed)
Delegate for an asynchronous business object factory method with n parameters.
Csla.Core.AsyncFactoryDelegate< T, R >
delegate void AsyncFactoryDelegate< T, R >(T arg, EventHandler< DataPortalResult< R > > completed)
Delegate for an asynchronous business object factory method with n parameters.
Generated by
1.9.2