Properly update the combo box selected text when the current item is changed, and...
[mono.git] / mcs / class / System.ServiceModel.Routing / System.ServiceModel.Routing / IRequestReplyRouter.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.Allowed)]
12         public interface IRequestReplyRouter
13         {
14                 [OperationContract (AsyncPattern = true, IsOneWay = false, Action = "*", ReplyAction = "*")]
15                 IAsyncResult BeginProcessRequest (Message message, AsyncCallback callback, object state);
16
17                 Message EndProcessRequest (IAsyncResult result);
18         }
19 }