Who would have known that the only way of specifying utf-8 without preamble, is to not specify encoding at all. Or 'null' when sending an Encoder.

This commit is contained in:
lbsa71
2007-07-08 07:53:48 +00:00
parent e8671a2c05
commit d6d7e2127c
3 changed files with 5 additions and 5 deletions

View File

@@ -57,8 +57,8 @@ namespace Nwc.XmlRpc
{
_client = client;
_output = new StreamWriter(client.GetStream(), Encoding.UTF8 );
_input = new StreamReader(client.GetStream(), Encoding.UTF8 );
_output = new StreamWriter(client.GetStream() );
_input = new StreamReader(client.GetStream() );
GetRequestMethod();
GetRequestHeaders();