  | IRpcDispatcherDispatch Method | 
            Dispatches an RPC request.
            
Namespace: Ookii.Jumbo.RpcAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxvoid Dispatch(
	string operationName,
	Object target,
	BinaryReader reader,
	BinaryWriter writer
)
Sub Dispatch ( 
	operationName As String,
	target As Object,
	reader As BinaryReader,
	writer As BinaryWriter
)
void Dispatch(
	String^ operationName, 
	Object^ target, 
	BinaryReader^ reader, 
	BinaryWriter^ writer
)
abstract Dispatch : 
        operationName : string * 
        target : Object * 
        reader : BinaryReader * 
        writer : BinaryWriter -> unit Parameters
- operationName  String
 - The name of the operation to dispatch.
 - target  Object
 - The object to invoke the operation on.
 - reader  BinaryReader
 - A BinaryReader to read argument values from.
 - writer  BinaryWriter
 - A BinaryWriter to write the return value to.
 
See Also