2009-01-12 Geoff Norton <gnorton@novell.com>
authorGeoff Norton <grompf@sublimeintervention.com>
Tue, 13 Jan 2009 03:04:36 +0000 (03:04 -0000)
committerGeoff Norton <grompf@sublimeintervention.com>
Tue, 13 Jan 2009 03:04:36 +0000 (03:04 -0000)
        * ClientBase.cs: Added a few delegates missing from ChannelBase

svn path=/trunk/mcs/; revision=123169

mcs/class/System.ServiceModel/System.ServiceModel/ChangeLog
mcs/class/System.ServiceModel/System.ServiceModel/ClientBase.cs

index 9ae6dab9cc44befcdfee5f10536644012f0a85c6..4742baf124ef9394cac3c2c89c50cc89e7e5dc28 100755 (executable)
@@ -1,3 +1,7 @@
+2009-01-12  Geoff Norton  <gnorton@novell.com>
+
+       * ClientBase.cs: Added a few delegates missing from ChannelBase
+
 2009-01-07  Atsushi Enomoto  <atsushi@ximian.com>
 
        * ClientBase.cs : added ChannelBase class inside.
index 9699853e4a853d5e60f82a83ac90b02a98f2a007..4e7410867cb5f88efc3614b3f80157aa3b0aa37f 100644 (file)
@@ -43,6 +43,9 @@ namespace System.ServiceModel
                ClientRuntimeChannel inner_channel;
                CommunicationState state;
 
+               protected delegate IAsyncResult BeginOperationDelegate (object[] inValues, AsyncCallback asyncCallback, object state);
+               protected delegate object[] EndOperationDelegate (IAsyncResult result);
+
                protected ClientBase ()
                        : this (initialContxt)
                {