mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
use 'in' on PollService event args
This commit is contained in:
@@ -31,13 +31,13 @@ using OpenMetaverse;
|
||||
|
||||
namespace OpenSim.Framework.Servers.HttpServer
|
||||
{
|
||||
public delegate OSHttpResponse RequestMethod(UUID ID, OSHttpRequest request);
|
||||
public delegate bool HasEventsMethod(UUID requestID, UUID pId);
|
||||
public delegate OSHttpResponse RequestMethod(in UUID ID, OSHttpRequest request);
|
||||
public delegate bool HasEventsMethod(in UUID requestID, in UUID pId);
|
||||
|
||||
public delegate Hashtable GetEventsMethod(UUID requestID, UUID pId);
|
||||
public delegate Hashtable GetEventsMethod(in UUID requestID, in UUID pId);
|
||||
|
||||
public delegate Hashtable NoEventsMethod(UUID requestID, UUID pId);
|
||||
public delegate void DropMethod(UUID requestID, UUID pId);
|
||||
public delegate Hashtable NoEventsMethod(in UUID requestID, in UUID pId);
|
||||
public delegate void DropMethod(in UUID requestID, in UUID pId);
|
||||
|
||||
public class PollServiceEventArgs : EventArgs
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user