Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

60 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Configuration;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Configuration;
using System.ServiceModel.Description;
using System.ServiceModel.Dispatcher;
namespace System.ServiceModel.Routing.Configuration
{
[ConfigurationCollection (typeof(NamespaceElement))]
public class NamespaceElementCollection : ConfigurationElementCollection
{
public void Add (NamespaceElement element)
{
BaseAdd (element);
}
public void Clear ()
{
BaseClear ();
}
protected override ConfigurationElement CreateNewElement ()
{
return new NamespaceElement ();
}
protected override object GetElementKey (ConfigurationElement element)
{
return ((NamespaceElement) element).Prefix;
}
public new NamespaceElement this [string name] {
get {
foreach (NamespaceElement ne in this)
if (ne.Namespace == name)
return ne;
return null;
}
}
public NamespaceElement this [int index] {
get { return (NamespaceElement) BaseGet (index); }
}
public override bool IsReadOnly ()
{
return base.IsReadOnly ();
}
public void Remove (NamespaceElement element)
{
BaseRemove (element);
}
}
}