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

32 lines
1.4 KiB
C#

//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------
namespace System.ServiceModel.Discovery.VersionCD1
{
using System.ServiceModel;
[ServiceContract(
Name = ProtocolStrings.ContractNames.DiscoveryAdhocContractName,
Namespace = ProtocolStrings.VersionCD1.Namespace,
CallbackContract = typeof(IDiscoveryResponseContractCD1))]
interface IDiscoveryContractAdhocCD1
{
[OperationContract(Action = ProtocolStrings.VersionCD1.ProbeAction, IsOneWay = true)]
void ProbeOperation(ProbeMessageCD1 request);
[OperationContract(Action = ProtocolStrings.VersionCD1.ProbeAction, IsOneWay = true, AsyncPattern = true)]
IAsyncResult BeginProbeOperation(ProbeMessageCD1 request, AsyncCallback callback, object state);
void EndProbeOperation(IAsyncResult result);
[OperationContract(Action = ProtocolStrings.VersionCD1.ResolveAction, IsOneWay = true)]
void ResolveOperation(ResolveMessageCD1 request);
[OperationContract(Action = ProtocolStrings.VersionCD1.ResolveAction, IsOneWay = true, AsyncPattern = true)]
IAsyncResult BeginResolveOperation(ResolveMessageCD1 request, AsyncCallback callback, object state);
void EndResolveOperation(IAsyncResult result);
}
}