Drop this one too
[mono.git] / mcs / class / System.ServiceModel.Routing / System.ServiceModel.Routing / ISimplexSessionRouter.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Collections.ObjectModel;
4 using System.ServiceModel;
5 using System.ServiceModel.Channels;
6 using System.ServiceModel.Description;
7 using System.ServiceModel.Dispatcher;
8
9 namespace System.ServiceModel.Routing
10 {
11         [ServiceContract (Namespace = "http://schemas.microsoft.com/netfx/2009/05/routing", SessionMode = SessionMode.Required)]
12         public interface ISimplexSessionRouter
13         {
14                 [OperationContract (AsyncPattern = true, IsOneWay = true, Action = "*")]
15                 IAsyncResult BeginProcessMessage (Message message, AsyncCallback callback, object state);
16
17                 void EndProcessMessage (IAsyncResult result);
18         }
19 }