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

WriteEntityRef() private méthode

private WriteEntityRef ( string name ) : void
name string
Résultat void
        internal void WriteEntityRef( string name ) {
            if ( cacheAttrValue ) {
                attrValue.Append( '&' );
                attrValue.Append( name );
                attrValue.Append( ';' );
            }
            WriteEntityRefImpl( name );
        }