WriteSurrogateCharEntity() public method

public WriteSurrogateCharEntity ( char lowChar, char highChar ) : void
lowChar char
highChar char
return void
示例#1
0
 public override void WriteSurrogateCharEntity(char lowChar, char highChar)
 {
     EnsureWrappedWriter(XmlOutputMethod.Xml);
     _wrapped.WriteSurrogateCharEntity(lowChar, highChar);
 }
 public override void WriteSurrogateCharEntity(char lowChar, char highChar)
 {
     EndCDataSection();
     _wrapped.WriteSurrogateCharEntity(lowChar, highChar);
 }