System.Xml.Xsl.Runtime.XmlAttributeCache.WriteString C# (CSharp) Method

WriteString() public method

Add a block of text to the cache. This text block makes up some or all of the untyped string value of the current attribute.
public WriteString ( string text ) : void
text string
return void
        public override void WriteString(string text) {
            Debug.Assert(text != null);
            Debug.Assert(this.arrAttrs != null && this.numEntries != 0);
            EnsureAttributeCache();
            this.arrAttrs[this.numEntries++].Init(text);
        }