GroupProxy 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), _
signal As String, _
hubName As String, _
exclude As IList(Of String) _
)
'Usage
Dim send As Func(Of String, ClientHubInvocation, IList(Of String), Task)
Dim signal As String
Dim hubName As String
Dim exclude As IList(Of String)
Dim instance As New GroupProxy(send, signal, _
hubName, exclude)
public GroupProxy(
Func<string, ClientHubInvocation, IList<string>, Task> send,
string signal,
string hubName,
IList<string> exclude
)
public:
GroupProxy(
Func<String^, ClientHubInvocation^, IList<String^>^, Task^>^ send,
String^ signal,
String^ hubName,
IList<String^>^ exclude
)
new :
send:Func<string, ClientHubInvocation, IList<string>, Task> *
signal:string *
hubName:string *
exclude:IList<string> -> GroupProxy
public function GroupProxy(
send : Func<String, ClientHubInvocation, IList<String>, Task>,
signal : String,
hubName : String,
exclude : IList<String>
)
Parameters
- send
Type: System.Func<String, ClientHubInvocation, IList<String>, Task>
- signal
Type: System.String
- hubName
Type: System.String
- exclude
Type: System.Collections.Generic.IList<String>