System.Xml.XmlTextEncoder.StartAttribute C# (CSharp) Méthode

StartAttribute() private méthode

private StartAttribute ( bool cacheAttrValue ) : void
cacheAttrValue bool
Résultat void
        internal void StartAttribute( bool cacheAttrValue ) {
            this.inAttribute = true;
            this.cacheAttrValue = cacheAttrValue;
            if ( cacheAttrValue ) { 
                if ( attrValue == null ) {
                    attrValue = new BufferBuilder();
                }
                else {
                    attrValue.Clear();
                }
            }
        }