BaseCommandsPlugin.ViewModelBase.NotifyPropertyChanged C# (CSharp) Method

NotifyPropertyChanged() public method

public NotifyPropertyChanged ( string property ) : void
property string
return void
        public void NotifyPropertyChanged(string property) => this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(property));
    }