MobileServiceCollection<TTable,TCollection>.OnPropertyChanged Method

Definition

Invokes the PropertyChanged event for the propertyName property. Provides a way for subclasses to override the event invocation behavior.

protected virtual void OnPropertyChanged (string propertyName = null);
Parameters
propertyName
String

The name of the property that has changed.

Remarks

The CallerMemberName attribute will supply the value if no explicit value is provided. For more info see http://msdn.microsoft.com/en-us/library/hh534540.aspx We still need the null check, because you can still pass null as an explicit parameter.