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