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

WriteValue() public method

All other WriteValue methods are implemented by XmlWriter to delegate to WriteValue(object) or WriteValue(string), so only these two methods need to be implemented.
public WriteValue ( object value ) : void
value object
return void
        public override void WriteValue(object value) {
            Debug.Assert(value is XmlAtomicValue, "value should always be an XmlAtomicValue, as XmlAttributeCache is only used by XmlQueryOutput");
            Debug.Assert(this.arrAttrs != null && this.numEntries != 0);
            EnsureAttributeCache();
            this.arrAttrs[this.numEntries++].Init((XmlAtomicValue) value);
        }

Same methods

XmlAttributeCache::WriteValue ( string value ) : void