ClientProxy Constructor
.NET Framework 4
Namespace: Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Sub New ( _
send As Func(Of String, ClientHubInvocation, IList(Of String), Task), _
hubName As String, _
exclude As IList(Of String) _
)
'Usage
Dim send As Func(Of String, ClientHubInvocation, IList(Of String), Task)
Dim hubName As String
Dim exclude As IList(Of String)
Dim instance As New ClientProxy(send, hubName, _
exclude)
public ClientProxy(
Func<string, ClientHubInvocation, IList<string>, Task> send,
string hubName,
IList<string> exclude
)
public:
ClientProxy(
Func<String^, ClientHubInvocation^, IList<String^>^, Task^>^ send,
String^ hubName,
IList<String^>^ exclude
)
new :
send:Func<string, ClientHubInvocation, IList<string>, Task> *
hubName:string *
exclude:IList<string> -> ClientProxy
public function ClientProxy(
send : Func<String, ClientHubInvocation, IList<String>, Task>,
hubName : String,
exclude : IList<String>
)
Parameters
- send
Type: System.Func<String, ClientHubInvocation, IList<String>, Task>
- hubName
Type: System.String
- exclude
Type: System.Collections.Generic.IList<String>