MS.Internal.Xml.Cache.XPathNode.SetCollapsedValue C# (CSharp) Method

SetCollapsedValue() public method

Create a collapsed text node on this element having the specified value.
public SetCollapsedValue ( string value ) : void
value string
return void
        public void SetCollapsedValue(string value) {
            Debug.Assert(NodeType == XPathNodeType.Element);
            this.value = value;
            this.props |= HasContentChildBit | HasCollapsedTextBit;
        }