mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
14 lines
319 B
C#
14 lines
319 B
C#
using System.ServiceModel;
|
|
|
|
namespace HeliosPlus.InterProcess
|
|
{
|
|
[ServiceContract]
|
|
internal interface IService
|
|
{
|
|
int HoldProcessId { [OperationContract] get; }
|
|
InstanceStatus Status { [OperationContract] get; }
|
|
|
|
[OperationContract(IsOneWay = true)]
|
|
void StopHold();
|
|
}
|
|
} |