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:
authorRaja R Harinath <harinath@hurrynot.org>2010-03-02 20:24:25 +0300
committerRaja R Harinath <harinath@hurrynot.org>2010-03-02 20:24:25 +0300
commit897697630e79c7076071ad0a8f213fbd4752af4e (patch)
tree95ad90a6339e30d768e068441544037f89165854 /mcs/class/System.ServiceModel.Routing
parent5d765fd0969ed1b1a0c20a92ca8c0cba1d5a64c1 (diff)
* BackupListCollection.cs, FilterTableCollection.cs: Add indexer.
Apart from completing more of the API, this fixes a verification failure on the DLL svn path=/trunk/mcs/; revision=152857
Diffstat (limited to 'mcs/class/System.ServiceModel.Routing')
-rw-r--r--mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/BackupListCollection.cs4
-rw-r--r--mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/ChangeLog4
-rw-r--r--mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/FilterTableCollection.cs4
3 files changed, 12 insertions, 0 deletions
diff --git a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/BackupListCollection.cs b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/BackupListCollection.cs
index 313a2253f60..1db6d8c87cb 100644
--- a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/BackupListCollection.cs
+++ b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/BackupListCollection.cs
@@ -32,5 +32,9 @@ namespace System.ServiceModel.Routing.Configuration
{
BaseRemove (element);
}
+
+ public new BackupEndpointCollection this [string name] {
+ get { return (BackupEndpointCollection) BaseGet (name); }
+ }
}
}
diff --git a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/ChangeLog b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/ChangeLog
index 4579c955b56..2d71ccfb003 100644
--- a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/ChangeLog
+++ b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/ChangeLog
@@ -1,3 +1,7 @@
+2010-03-02 Raja R Harinath <harinath@hurrynot.org>
+
+ * BackupListCollection.cs, FilterTableCollection.cs: Add indexer.
+
2009-12-11 Atsushi Enomoto <atsushi@ximian.com>
* RoutingSection.cs : sorted out most of the configuration stuff.
diff --git a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/FilterTableCollection.cs b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/FilterTableCollection.cs
index 5842c738d1f..92931810b30 100644
--- a/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/FilterTableCollection.cs
+++ b/mcs/class/System.ServiceModel.Routing/System.ServiceModel.Routing.Configuration/FilterTableCollection.cs
@@ -37,5 +37,9 @@ namespace System.ServiceModel.Routing.Configuration
{
BaseRemove (element);
}
+
+ public new FilterTableEntryCollection this [string name] {
+ get { return (FilterTableEntryCollection) BaseGet (name); }
+ }
}
}