Workflow.Activity.OnPropertyChanged C# (CSharp) Method

OnPropertyChanged() public method

public OnPropertyChanged ( string info ) : void
info string
return void
        public void OnPropertyChanged(string info)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(info));
            }
        }