ClientProxy::TryInvokeMember Method

.NET Framework 4.5

Executes the Invoke(String, array<Object>) method.

Namespace:  Microsoft.AspNet.SignalR.Hubs
Assembly:  Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)

public:
virtual bool TryInvokeMember(
	InvokeMemberBinder^ binder, 
	array<Object^>^ args, 
	[OutAttribute] Object^% result
) override

Parameters

binder
Type: System.Dynamic::InvokeMemberBinder
The information that contains binding semantic and details of the client side hub operation.
args
Type: array<System::Object>
The arguments that are passed to the object member during the invoke operation.
result
Type: System::Object%
When method returns, contains the result of the member invocation.

Return Value

Type: System::Boolean
true always.
Show: