C# Class ChatterBox.Common.Communication.Helpers.ChannelInvoker

Show file Open project: openpeer/ChatterBox Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
ChannelInvoker ( object handler ) : System

Helper used to invoke a method with an argument on a handler object

ProcessRequest ( string request ) : InvocationResult

Handles the request by deserializing it and invoking the requested method on the handler object

Method Details

ChannelInvoker() public method

Helper used to invoke a method with an argument on a handler object
public ChannelInvoker ( object handler ) : System
handler object The object on which the method will be invoked
return System

ProcessRequest() public method

Handles the request by deserializing it and invoking the requested method on the handler object
public ProcessRequest ( string request ) : InvocationResult
request string The serialized request in the format
return InvocationResult