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.
INotifyBusy.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="INotifyBusy.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Interface defining an object that notifies when it</summary>
7//-----------------------------------------------------------------------
8using System.ComponentModel;
9
10namespace Csla.Core
11{
17 {
23
29 bool IsBusy { get; }
34 bool IsSelfBusy { get; }
35 }
36}
Interface defining an object that notifies when it is busy executing an asynchronous operation.
Definition: INotifyBusy.cs:17
bool IsSelfBusy
Gets a value indicating whether the object is busy running an asynchronous operation.
Definition: INotifyBusy.cs:34
BusyChangedEventHandler BusyChanged
Event raised when the object's busy status changes.
Definition: INotifyBusy.cs:22
bool IsBusy
Gets a value indicating whether the object, or any of the object's child objects, are busy running an...
Definition: INotifyBusy.cs:29
Implemented by an object that perfoms asynchronous operations that may raise exceptions.
delegate void BusyChangedEventHandler(object sender, BusyChangedEventArgs e)
Delegate for handling the BusyChanged event.