Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

31 lines
1.6 KiB
C#

//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------
namespace System.ServiceModel.Discovery.VersionCD1
{
using System.ServiceModel;
[ServiceContract(
Name = ProtocolStrings.ContractNames.DiscoveryManagedContractName,
Namespace = ProtocolStrings.VersionCD1.Namespace)]
interface IDiscoveryContractManagedCD1
{
[OperationContract(Action = ProtocolStrings.VersionCD1.ProbeAction, ReplyAction = ProtocolStrings.VersionCD1.ProbeMatchesAction)]
ProbeMatchesMessageCD1 ProbeOperation(ProbeMessageCD1 request);
[OperationContract(Action = ProtocolStrings.VersionCD1.ProbeAction, ReplyAction = ProtocolStrings.VersionCD1.ProbeMatchesAction, AsyncPattern = true)]
IAsyncResult BeginProbeOperation(ProbeMessageCD1 request, AsyncCallback callback, object state);
ProbeMatchesMessageCD1 EndProbeOperation(IAsyncResult result);
[OperationContract(Action = ProtocolStrings.VersionCD1.ResolveAction, ReplyAction = ProtocolStrings.VersionCD1.ResolveMatchesAction)]
ResolveMatchesMessageCD1 ResolveOperation(ResolveMessageCD1 request);
[OperationContract(Action = ProtocolStrings.VersionCD1.ResolveAction, ReplyAction = ProtocolStrings.VersionCD1.ResolveMatchesAction, AsyncPattern = true)]
IAsyncResult BeginResolveOperation(ResolveMessageCD1 request, AsyncCallback callback, object state);
ResolveMatchesMessageCD1 EndResolveOperation(IAsyncResult result);
}
}