Generates and writes the surrogate
character entity for the surrogate character pair.
Namespace:
Microsoft.IdentityModel.Protocols.XmlSignature
Assembly: Microsoft.IdentityModel (in
microsoft.identitymodel.dll)
Usage
Visual Basic |
Dim instance As DelegatingXmlDictionaryWriter
Dim lowChar As Char
Dim highChar As Char
instance.WriteSurrogateCharEntity(lowChar, highChar)
|
Syntax
Visual Basic |
Public Overrides Sub WriteSurrogateCharEntity ( _
lowChar As Char, _
highChar As Char _
)
|
C# |
public override void WriteSurrogateCharEntity (
char lowChar,
char highChar
)
|
C++ |
public:
virtual void WriteSurrogateCharEntity (
wchar_t lowChar,
wchar_t highChar
) override
|
J# |
public void WriteSurrogateCharEntity (
char lowChar,
char highChar
)
|
JScript |
public override function WriteSurrogateCharEntity (
lowChar : char,
highChar : char
)
|
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.
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2008, Windows Vista, Not tested on Windows XP
See Also