mscorlib(4.0.0.0) API with additions
PropertyChangedEventArgs.cs
2 
3 namespace System.ComponentModel
4 {
6  [global::__DynamicallyInvokable]
7  [HostProtection(SecurityAction.LinkDemand, SharedState = true)]
9  {
10  private readonly string propertyName;
11 
14  [global::__DynamicallyInvokable]
15  public virtual string PropertyName
16  {
17  [global::__DynamicallyInvokable]
18  get
19  {
20  return propertyName;
21  }
22  }
23 
26  [global::__DynamicallyInvokable]
27  public PropertyChangedEventArgs(string propertyName)
28  {
29  this.propertyName = propertyName;
30  }
31  }
32 }
Provides data for the E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged event.
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
PropertyChangedEventArgs(string propertyName)
Initializes a new instance of the T:System.ComponentModel.PropertyChangedEventArgs class.
SecurityAction
Specifies the security actions that can be performed using declarative security.
virtual string PropertyName
Gets the name of the property that changed.