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

FillInfo() публичный Метод

public FillInfo ( ClientEventDoc info, IEnumerable values, ContentType contentType ) : void
info ClientEventDoc
values IEnumerable
contentType ContentType
Результат void
        public void FillInfo(ClientEventDoc info, IEnumerable<XElement> values, ContentType contentType)
        {
            GetSummaryAndRemarks(info, values, contentType);
            var @event = values.Where(el => el.Name == EventTagName).FirstOrDefault();

            info.AddMethodName = @event.Attribute("add").Value;
            info.RemoveMethodName = @event.Attribute("remove").Value;
            info.RaiseMethodName = @event.Attribute("raise") != null ? @event.Attribute("raise").Value : null;
        }

Same methods

DocParser::FillInfo ( ClientPropertyDoc 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