Description
The SendResponse
method is used to send a response back to a request that was previously received. This method is part of the Sandbox.Connection
class, which represents a network connection, typically to a server or client.
This method is generic and can handle any type of response data, specified by the type parameter T
. The method requires a unique requestId
to identify the request being responded to, and the response data t
of type T
.
Usage
To use the SendResponse
method, you need to have a valid requestId
that corresponds to a request you have received. You also need to prepare the response data of the appropriate type T
. Call the method on an instance of Sandbox.Connection
with these parameters.
Example
// Example of using SendResponse
public void HandleRequest(Guid requestId, SomeResponseType responseData)
{
// Assuming 'connection' is an instance of Sandbox.Connection
connection.SendResponse<SomeResponseType>(requestId, responseData);
}