System.Xml.XmlTextEncoder.StartAttribute C# (CSharp) Метод

StartAttribute() приватный Метод

private StartAttribute ( bool cacheAttrValue ) : void
cacheAttrValue bool
Результат void
        internal void StartAttribute( bool cacheAttrValue ) {
            this.inAttribute = true;
            this.cacheAttrValue = cacheAttrValue;
            if ( cacheAttrValue ) { 
                if ( attrValue == null ) {
                    attrValue = new BufferBuilder();
                }
                else {
                    attrValue.Clear();
                }
            }
        }