AjaxControlToolkit.Reference.Core.Parsing.DocParser.FillInfo C# (CSharp) Method

FillInfo() public method

public FillInfo ( ClientPropertyDoc info, IEnumerable values, ContentType contentType ) : void
info ClientPropertyDoc
values IEnumerable
contentType ContentType
return void
        public void FillInfo(ClientPropertyDoc info, IEnumerable<XElement> values, ContentType contentType)
        {
            GetSummaryAndRemarks(info, values, contentType);
            info.GetterName = GetValue(values, GetterTagName, contentType);
            info.SetterName = GetValue(values, SetterTagName, contentType);
        }

Same methods

DocParser::FillInfo ( ClientEventDoc info, IEnumerable values, ContentType contentType ) : void
DocParser::FillInfo ( EventDoc info, IEnumerable values, ContentType contentType ) : void
DocParser::FillInfo ( MethodDoc info, IEnumerable values, ContentType contentType ) : void
DocParser::FillInfo ( PropertyDoc info, IEnumerable values, ContentType contentType ) : void
DocParser::FillInfo ( TypeDoc info, IEnumerable values, ContentType contentType ) : void