コード例 #1
0
        public static bool TryParse(string value, out ValidPreviewText comment, out IReadOnlyCollection <string> errorMessages)
        {
            var errorMessageList = new List <string>();

            errorMessages = errorMessageList;

            if (IsEmpty(value))
            {
                // TryParse should never fail, so report null as an error instead of ArgumentNullException.
                errorMessageList.Add("Value required");
            }
            else
            {
                if (value.Length < MinLength || value.Length > MaxLength)
                {
                    errorMessageList.Add(string.Format("Length must be from {0} to {1} characters", MinLength, MaxLength));
                }
            }

            if (errorMessageList.Count > 0)
            {
                comment = null;
                return(false);
            }

            comment = new ValidPreviewText(value);

            return(true);
        }
コード例 #2
0
        public static bool TryParse(string value, out ValidPreviewText comment)
        {
            IReadOnlyCollection <string> errorMessages;

            return(TryParse(value, out comment, out errorMessages));
        }