DefaultHubManager.GetHubMethod Method
.NET Framework 4
Namespace: Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Function GetHubMethod ( _
hubName As String, _
method As String, _
parameters As IList(Of IJsonValue) _
) As MethodDescriptor
'Usage
Dim instance As DefaultHubManager
Dim hubName As String
Dim method As String
Dim parameters As IList(Of IJsonValue)
Dim returnValue As MethodDescriptor
returnValue = instance.GetHubMethod(hubName, _
method, parameters)
public MethodDescriptor GetHubMethod(
string hubName,
string method,
IList<IJsonValue> parameters
)
public:
virtual MethodDescriptor^ GetHubMethod(
String^ hubName,
String^ method,
IList<IJsonValue^>^ parameters
) sealed
abstract GetHubMethod :
hubName:string *
method:string *
parameters:IList<IJsonValue> -> MethodDescriptor
override GetHubMethod :
hubName:string *
method:string *
parameters:IList<IJsonValue> -> MethodDescriptor
public final function GetHubMethod(
hubName : String,
method : String,
parameters : IList<IJsonValue>
) : MethodDescriptor
Parameters
- hubName
Type: System.String
- method
Type: System.String
- parameters
Type: System.Collections.Generic.IList<IJsonValue>
Return Value
Type: Microsoft.AspNet.SignalR.Hubs.MethodDescriptor
Implements
IHubManager.GetHubMethod(String, String, IList<IJsonValue>)