System.Xml.XmlCharCheckingWriter.WriteString C# (CSharp) 메소드

WriteString() 공개 메소드

public WriteString ( string text ) : void
text string
리턴 void
        public override void WriteString( string text ) {
            if ( text != null ) {
                if ( checkValues ) {
                    CheckCharacters( text );
                }
                if ( replaceNewLines && WriteState != WriteState.Attribute ) {
                    text = ReplaceNewLines( text );
                }
            }
            writer.WriteString( text );
        }