Click or drag to resize

HttpSend Method (Byte, Byte, Byte, Byte)

Builds a RPC frame and push it to the OutQueue

Namespace:  Crosser.Server.Modules.Protocol.HTTP
Assembly:  Crosser.Server (in Crosser.Server.dll) Version: 0.0.5
Syntax
C#
protected override Task Send(
	byte[] controller,
	byte[] method,
	byte[] callbackid,
	byte[] data
)

Parameters

controller
Type: SystemByte
the IController alias represented as bytes
method
Type: SystemByte
the method to use in the RPC call
callbackid
Type: SystemByte
the callback-id that the client used when calling the server
data
Type: SystemByte
the data to pass to the method in the RPC call

Return Value

Type: Task
Task
See Also