Channel9Downloader.ViewModels.Framework.ValidatingObject.RemoveError C# (CSharp) Method

RemoveError() private method

Removes an error from the errors dictionary.
private RemoveError ( string propertyName ) : void
propertyName string Name of the property to remove.
return void
        private void RemoveError(string propertyName)
        {
            _errors.Remove(propertyName);
        }