Click or drag to resize

MessageChannelRegisterTopicTResult Method (String, FuncTResult)

Registers a method that returns a value for a given topic.

Namespace:  Openfin.Desktop.Messaging
Assembly:  OpenfinDesktop (in OpenfinDesktop.dll) Version: 17.4.0
Syntax
C#
public void RegisterTopic<TResult>(
	string topic,
	Func<TResult> listener
)

Parameters

topic
Type: SystemString
The name of the registered topic.
listener
Type: SystemFuncTResult
An encapsulated method to execute for the registered method.

Type Parameters

TResult
The return type of the registered method.
See Also