* Correct asset type of Lost and Found folder - this might stop it appearing twice

* Other minor corrections to initial inventory contents
* These will only take affect for new users
This commit is contained in:
Justin Clarke Casey
2008-03-27 18:26:01 +00:00
parent 14ee78b3af
commit 0609970f2e
3 changed files with 30 additions and 24 deletions

View File

@@ -34,6 +34,9 @@ using System.Xml.Serialization;
namespace OpenSim.Framework.Servers
{
/// <summary>
/// Makes an asynchronous REST request which doesn't require us to do anything with the response.
/// </summary>
public class RestObjectPoster
{
public static void BeginPostObject<TRequest>(string requestUrl, TRequest obj)

View File

@@ -36,6 +36,9 @@ namespace OpenSim.Framework.Servers
{
public delegate void ReturnResponse<T>(T reponse);
/// <summary>
/// Makes an asynchronous REST request with a callback to invoke with the response.
/// </summary>
public class RestObjectPosterResponse<TResponse>
{
public ReturnResponse<TResponse> ResponseCallback;