FluentBuild.BuildUI.BuildData.InvokePropertyChanged C# (CSharp) Method

InvokePropertyChanged() public method

public InvokePropertyChanged ( string e ) : void
e string
return void
        public void InvokePropertyChanged(string e)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null) handler(this, new PropertyChangedEventArgs(e));
        }