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

Init() public method

Initialize the cache. Use this method instead of a constructor in order to reuse the cache.
public Init ( XmlRawWriter wrapped ) : void
wrapped System.Xml.XmlRawWriter
return void
        public void Init(XmlRawWriter wrapped) {
            SetWrappedWriter(wrapped);

            // Clear attribute list
            this.numEntries = 0;
            this.idxLastName = 0;
            this.hashCodeUnion = 0;
        }