httpserver send is now async

This commit is contained in:
UbitUmarov
2020-03-31 22:01:45 +01:00
parent e558dd3ac6
commit 817c2b3bb9
3 changed files with 28 additions and 12 deletions

View File

@@ -231,6 +231,18 @@ namespace OpenSim.Framework.Servers.HttpServer
}
}
public int Priority
{
get
{
return _httpResponse.Priority;
}
set
{
_httpResponse.Priority = value;
}
}
/// <summary>
/// Set a redirct location.
/// </summary>