System.ServiceModel.Channels.BindingElementCollection
namespace System.ServiceModel.Channels
{
public class BindingElementCollection : Collection<BindingElement>
{
public BindingElementCollection();
public BindingElementCollection(IEnumerable<BindingElement> elements);
public BindingElementCollection(BindingElement[] elements);
public void AddRange(params BindingElement[] elements);
public BindingElementCollection Clone();
public bool Contains(Type bindingElementType);
public T Find<T>();
public Collection<T> FindAll<T>();
public T Remove<T>();
public Collection<T> RemoveAll<T>();
}
}