mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user