AjaxControlToolkit.Reference.Core.Parsing.DocParser.GetSummaryAndRemarks C# (CSharp) Метод

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

private GetSummaryAndRemarks ( DocBase info, IEnumerable values, ContentType contentType ) : void
info DocBase
values IEnumerable
contentType ContentType
Результат void
        void GetSummaryAndRemarks(DocBase info, IEnumerable<XElement> values, ContentType contentType)
        {
            if(values.Any()) {
                info.Summary = GetValue(values, SummaryTagName, contentType);
                info.Remarks = GetValue(values, RemarksTagName, contentType);
            } else
                info.Summary = "<INVALID DOC MARKUP>";
        }