AzureDNSManager.AzureDNSViewModel.OnPropertyChanged C# (CSharp) Method

OnPropertyChanged() public method

public OnPropertyChanged ( [ name = null ) : void
name [
return void
        public void OnPropertyChanged([System.Runtime.CompilerServices.CallerMemberName]string name = null)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null && !string.IsNullOrWhiteSpace(name))
                handler(this, new PropertyChangedEventArgs(name));

        }