System.Xml.XmlRawWriter.WriteSurrogateCharEntity C# (CSharp) Method

WriteSurrogateCharEntity() public method

public WriteSurrogateCharEntity ( char lowChar, char highChar ) : void
lowChar char
highChar char
return void
        public override void WriteSurrogateCharEntity( char lowChar, char highChar ) {
            WriteString( new string( new char[] {lowChar, highChar} ) );
        }

Usage Example

Esempio n. 1
0
 public override void WriteSurrogateCharEntity(char lowChar, char highChar)
 {
     EnsureWrappedWriter(XmlOutputMethod.Xml);
     _wrapped.WriteSurrogateCharEntity(lowChar, highChar);
 }
All Usage Examples Of System.Xml.XmlRawWriter::WriteSurrogateCharEntity