mscorlib(4.0.0.0) API with additions
AddingNewEventArgs.cs
2 
4 {
6  [HostProtection(SecurityAction.LinkDemand, SharedState = true)]
8  {
9  private object newObject;
10 
13  public object NewObject
14  {
15  get
16  {
17  return newObject;
18  }
19  set
20  {
21  newObject = value;
22  }
23  }
24 
27  {
28  }
29 
32  public AddingNewEventArgs(object newObject)
33  {
34  this.newObject = newObject;
35  }
36  }
37 }
AddingNewEventArgs(object newObject)
Initializes a new instance of the T:System.ComponentModel.AddingNewEventArgs class using the specifie...
Exposes state that might be shared between threads.
Definition: __Canon.cs:3
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: EventArgs.cs:9
Provides data for the E:System.Windows.Forms.BindingSource.AddingNew event.
SecurityAction
Specifies the security actions that can be performed using declarative security.
object NewObject
Gets or sets the object to be added to the binding list.
AddingNewEventArgs()
Initializes a new instance of the T:System.ComponentModel.AddingNewEventArgs class using no parameter...