* Get the code up to speed with my -#dev e-mail example. (uncomment out lines 227 - 235 to test.

This commit is contained in:
Teravus Ovares
2008-09-30 05:39:52 +00:00
parent f6699892dc
commit 6ea5b515d0
3 changed files with 45 additions and 5 deletions

View File

@@ -200,6 +200,23 @@ namespace OpenSim.Framework.Servers
}
}
public Version ProtocolVersion
{
get
{
if (!HttpServer)
return _httpListenerResponse.ProtocolVersion;
return new Version("1.0");
}
set
{
if (!HttpServer)
_httpListenerResponse.ProtocolVersion = value;
}
}
/// <summary>
/// Return the output stream feeding the body.
/// </summary>