| http://www.w3.org/ns/prov#value | - The following is an illustrative example for implementing a source object (e.g., data item 232) in accordance with the embodiment for the notification mechanism. public class myClass : IPropertyChange { private string foo = ???Hello World???; public string Foo { get { return foo; } set { if(foo != value) { foo = value; NotifyPropertyChanged(???foo???); } } public event PropertyChangedEventHandler
|