Noemax FastInfoset.NET
WriteSurrogateCharEntity Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class : WriteSurrogateCharEntity Method






lowChar

The low surrogate. This must be a value between 0xDC00 and 0xDFFF.

highChar

The high surrogate. This must be a value between 0xD800 and 0xDBFF.

Writes a Unicode surrogate char pair.

Syntax

Visual Basic (Declaration) 
Public Overrides NotOverridable Sub WriteSurrogateCharEntity( _
   ByVal lowChar As Char, _
   ByVal highChar As Char _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim lowChar As Char
Dim highChar As Char
 
instance.WriteSurrogateCharEntity(lowChar, highChar)
C# 
public override void WriteSurrogateCharEntity( 
   char lowChar,
   char highChar
)
Delphi 
public procedure WriteSurrogateCharEntity( 
    lowChar: Char;
    highChar: Char
); override; 
JScript 
public override function WriteSurrogateCharEntity( 
   lowChar : char,
   highChar : char
);
Managed Extensions for C++ 
public: void WriteSurrogateCharEntity( 
   char lowChar,
   char highChar
) override 
C++/CLI 
public:
void WriteSurrogateCharEntity( 
   char lowChar,
   char highChar
) override 

Parameters

lowChar

The low surrogate. This must be a value between 0xDC00 and 0xDFFF.

highChar

The high surrogate. This must be a value between 0xD800 and 0xDBFF.

See Also