 | RpcProxyBaseSendRequest Method |
Sends an RPC request. This class is for internal Jumbo use only and should not be used from your code.
Namespace: Ookii.Jumbo.RpcAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxprotected BinaryReader? SendRequest(
string operationName,
Action<BinaryWriter>? serializer
)
Protected Function SendRequest (
operationName As String,
serializer As Action(Of BinaryWriter)
) As BinaryReader
protected:
BinaryReader^ SendRequest(
String^ operationName,
Action<BinaryWriter^>^ serializer
)
member SendRequest :
operationName : string *
serializer : Action<BinaryWriter> -> BinaryReader
Parameters
- operationName String
- The name of the operation to invoke.
- serializer ActionBinaryWriter
-
A delegate that will be invoked to serialize the parameters of the operation.
Return Value
BinaryReaderThe result of the operation.
See Also