Server Extension API Reference
Extension will empower the game online service and make it more flexible. You can handle any event in your way, and make your own service which can interact with PGOS services and your own client and dedicated server.
API List
| API | Description |
|---|---|
| InvokeVirtualServer | Invoke the specified virtual server. |
API Details
InvokeVirtualServer
Invoke the specified virtual server.
/// <summary>Invoke the specified virtual server.</summary>
/// <param name="req">The request info of the call.</param>
public void InvokeVirtualServer(VirtualServerReq req, ExtensionDelegate0 callback);
Parameters:
| Param | Type | Description |
|---|---|---|
| req | VirtualServerReq | The request info of the call. |
| callback | ExtensionDelegate0 |
Return: void
All Delegates
public delegate void ExtensionDelegate0(PgosResult a0, VirtualServerResp a1);
Type Reference: