System.Data.DataError.SetText C# (CSharp) Метод

SetText() приватный Метод

Sets the error message for the .
private SetText ( string errorText ) : void
errorText string
Результат void
        private void SetText(string errorText)
        {
            if (null == errorText)
            {
                errorText = string.Empty;
            }
            _rowError = errorText;
        }