System.Xml.XmlRawWriter.WriteSurrogateCharEntity C# (CSharp) Méthode

WriteSurrogateCharEntity() public méthode

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

Usage Example

Exemple #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