Microsoft.WindowsAzure.Samples.Phone.Storage.TableServiceSchema.OnPropertyChanged C# (CSharp) Method

OnPropertyChanged() protected method

protected OnPropertyChanged ( string changedProperty ) : void
changedProperty string
return void
        protected virtual void OnPropertyChanged(string changedProperty)
        {
            var propertyChanged = this.PropertyChanged;
            if (propertyChanged != null)
            {
                propertyChanged(this, new PropertyChangedEventArgs(changedProperty));
            }
        }