Interface IBusyService
Interface IBusyService
Namespace: ISynergy.Framework.Mvvm.Abstractions.Services
Assembly: ISynergy.Framework.Mvvm.dll
Syntax
public interface IBusyService
Properties
View SourceBusyMessage
Gets or sets the busy message.
Declaration
string BusyMessage { get; set; }
Property Value
Type | Description |
---|---|
System.String | The busy message. |
IsBusy
Gets or sets a value indicating whether this instance is busy.
Declaration
bool IsBusy { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Methods
View SourceEndBusy()
Ends the busy.
Declaration
void EndBusy()
StartBusy()
Starts the busy.
Declaration
void StartBusy()
StartBusy(String)
Starts the busy.
Declaration
void StartBusy(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |