Microsoft.Protocols.TestSuites.Common.XmlWriterInjector.WriteSurrogateCharEntity C# (CSharp) Method

WriteSurrogateCharEntity() public method

A method used to override the method "WriteSurrogateCharEntity" of XmlWriter.
public WriteSurrogateCharEntity ( char lowChar, char highChar ) : void
lowChar char A parameter represents the low surrogate. This must be a value between 0xDC00 and 0xDFFF.
highChar char A parameter represents the high surrogate. This must be a value between 0xD800 and 0xDBFF.
return void
        public override void WriteSurrogateCharEntity(char lowChar, char highChar) 
        {
            this.originalXmlWriter.WriteSurrogateCharEntity(lowChar, highChar); 
            this.injectorXmlTextWriter.WriteSurrogateCharEntity(lowChar, highChar);
        }