Microsoft.Html.Core.Tree.Nodes.TagNode.Complete C# (CSharp) Метод

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

public Complete ( ReadOnlyCollection attributes, ITextRange closingSequence, bool closed, bool isShorthand, bool selfClosing ) : void
attributes ReadOnlyCollection
closingSequence ITextRange
closed bool
isShorthand bool
selfClosing bool
Результат void
        public void Complete(ReadOnlyCollection<AttributeNode> attributes, ITextRange closingSequence, bool closed, bool isShorthand, bool selfClosing) {
            IsClosed = closed;
            IsShorthand = isShorthand;
            IsSelfClosing = selfClosing;

            _end = closingSequence.End;

            Attributes = attributes;
        }