Microsoft.Html.Core.Tree.Nodes.TagNode.Contains C# (CSharp) Method

Contains() public method

Determines if node contains given position
public Contains ( int position ) : bool
position int Position in a text buffer
return bool
        public override bool Contains(int position) {
            if (base.Contains(position)) {
                return true;
            }

            if (position == End && !IsClosed) {
                return true;
            }

            return false;
        }