DekGenius.com
[ Team LiB ] Previous Section Next Section

BindingsCollectionmarshal by reference

System.Windows.Forms (system.windows.forms.dll)class

This class represents the collection of Binding objects for a Control, accessed through the Bindings property.

public class BindingsCollection : BaseCollection {
// Public Instance Properties
   public override int Count{get; } // overrides BaseCollection
   public Binding this{get; } // Protected Instance Properties
   protected override ArrayList List{get; } // overrides BaseCollection
// Protected Instance Methods
   protected internal void Add(Binding binding);
   protected virtual void AddCore(Binding dataBinding);
   protected internal void Clear();
   protected virtual void ClearCore();
   protected virtual void OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs ccevent);
   protected internal void Remove(Binding binding);
   protected internal void RemoveAt(int index);
   protected virtual void RemoveCore(Binding dataBinding);
   protected internal bool ShouldSerializeMyAll();
// Events
   public event CollectionChangeEventHandler CollectionChanged;
}

Hierarchy

System.Object System.MarshalByRefObject BaseCollection(System.Collections.ICollectio, System.Collections.IEnumerable) BindingsCollection

Subclasses

ControlBindingsCollection

Returned By

BindingManagerBase.Bindings

    [ Team LiB ] Previous Section Next Section