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
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2011-01-08 22:20:32 +0300
committerMarek Safar <marek.safar@gmail.com>2011-01-08 22:26:53 +0300
commitc8c8fc7769e9c55dff5d835ecf2d2ae2d39c7457 (patch)
tree80a2dd8a19fd4869a2df7503f716d9cf83454d64 /mcs/class/System.ServiceModel.Routing
parent526e61c3f0b967e15a34cb43c51f32bd8db939a0 (diff)
Fixed missing protected internal modifier
Diffstat (limited to 'mcs/class/System.ServiceModel.Routing')
-rw-r--r--mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/RoutingExtensionElement.cs2
-rw-r--r--mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/SoapProcessingExtensionElement.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/RoutingExtensionElement.cs b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/RoutingExtensionElement.cs
index 2aca3ef8045..93666e2d869 100644
--- a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/RoutingExtensionElement.cs
+++ b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/RoutingExtensionElement.cs
@@ -34,7 +34,7 @@ namespace System.ServiceModel.Routing.Configuration
set { base ["soapProcessingEnabled"] = value; }
}
- protected override object CreateBehavior ()
+ protected internal override object CreateBehavior ()
{
var table = RoutingSection.CreateFilterTable (FilterTableName);
diff --git a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/SoapProcessingExtensionElement.cs b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/SoapProcessingExtensionElement.cs
index 3694864f2e9..e21dbc9717c 100644
--- a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/SoapProcessingExtensionElement.cs
+++ b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/SoapProcessingExtensionElement.cs
@@ -22,7 +22,7 @@ namespace System.ServiceModel.Routing.Configuration
set { base ["processMessages"] = value; }
}
- protected override object CreateBehavior ()
+ protected internal override object CreateBehavior ()
{
return new SoapProcessingBehavior () { ProcessMessages = this.ProcessMessages };
}