mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
* re-fixed the utf-16 bug in xmlRpcResponse serialization
* added LLSDStreamHandler.cs to Caps (Haven't enabled it yet, though) * removed last traces of old rest handling
This commit is contained in:
@@ -7,19 +7,19 @@ namespace OpenSim.Framework.Servers
|
||||
{
|
||||
public abstract class BaseStreamHandler : IStreamHandler
|
||||
{
|
||||
public string ContentType
|
||||
virtual public string ContentType
|
||||
{
|
||||
get { return "application/xml"; }
|
||||
}
|
||||
|
||||
private string m_httpMethod;
|
||||
public string HttpMethod
|
||||
virtual public string HttpMethod
|
||||
{
|
||||
get { return m_httpMethod; }
|
||||
}
|
||||
|
||||
private string m_path;
|
||||
public string Path
|
||||
virtual public string Path
|
||||
{
|
||||
get { return m_path; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user