System.Windows.Forms.BindingsCollection.RemoveCore C# (CSharp) Method

RemoveCore() protected method

protected RemoveCore ( System.Windows.Forms.Binding dataBinding ) : void
dataBinding System.Windows.Forms.Binding
return void
		protected virtual void RemoveCore(Binding dataBinding) 
		{
			CollectionChangeEventArgs args = new CollectionChangeEventArgs(CollectionChangeAction.Remove, dataBinding);

			OnCollectionChanging (args);

			base.List.Remove(dataBinding);
			OnCollectionChanged (args);
		}