Version: 2021.1
LanguageEnglish
  • C#

ChannelClient.RegisterMessageHandler

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public Action RegisterMessageHandler(Action<string> handler);

Declaration

public Action RegisterMessageHandler(Action<byte[]> handler);

Parameters

handler A handler for all incoming messages on a specific channel.

Returns

Action An action that, when invoked, unregisters the ChannelClient handler (See ChannelClient.UnregisterMessageHandler).

Description

Registers a new handler on a specific channel. The new handler is called whenever a message is sent to the ChannelClient.