Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2009-08-07 10:12:21 +0400
committerAtsushi Eno <atsushieno@gmail.com>2009-08-07 10:12:21 +0400
commita8b7f121940fc883ea71fdaba51777cad2389cc5 (patch)
tree4571d62914eec5c15a26fcaf7bdf8a0f375509f2 /mcs
parentb24a5ca8356a46d4a59e92964738788ad1de35b8 (diff)
2009-08-07 Atsushi Enomoto <atsushi@ximian.com>
* DispatchRuntime.cs : callback runtime is set later. svn path=/trunk/mcs/; revision=139543
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/ChangeLog4
-rw-r--r--mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/DispatchRuntime.cs4
2 files changed, 5 insertions, 3 deletions
diff --git a/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/ChangeLog b/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/ChangeLog
index 9f93fc43154..60a6d96f1d8 100644
--- a/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/ChangeLog
+++ b/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-07 Atsushi Enomoto <atsushi@ximian.com>
+
+ * DispatchRuntime.cs : callback runtime is set later.
+
2009-08-06 Atsushi Enomoto <atsushi@ximian.com>
* ClientRuntime.cs :
diff --git a/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/DispatchRuntime.cs b/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/DispatchRuntime.cs
index ba048c250fb..8337ae6ae7f 100644
--- a/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/DispatchRuntime.cs
+++ b/mcs/class/System.ServiceModel/System.ServiceModel.Dispatcher/DispatchRuntime.cs
@@ -81,8 +81,6 @@ namespace System.ServiceModel.Dispatcher
internal DispatchRuntime (EndpointDispatcher dispatcher)
{
endpoint_dispatcher = dispatcher;
- // FIXME: is this really created at any time?
- callback_client_runtime = new ClientRuntime (this);
unhandled_dispatch_oper = new DispatchOperation (
this, "*", "*", "*");
}
@@ -110,9 +108,9 @@ namespace System.ServiceModel.Dispatcher
get { return endpoint_dispatcher; }
}
- [MonoTODO] // needs update when we can explore Duplex channels.
public ClientRuntime CallbackClientRuntime {
get { return callback_client_runtime; }
+ internal set { callback_client_runtime = value; }
}
public ReadOnlyCollection<IAuthorizationPolicy> ExternalAuthorizationPolicies {