Subscription.PerformWork Method
.NET Framework 4
Namespace: Microsoft.AspNet.SignalR.Messaging
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Protected MustOverride Sub PerformWork ( _
items As IList(Of ArraySegment(Of Message)), _
<OutAttribute> ByRef totalCount As Integer, _
<OutAttribute> ByRef state As Object _
)
'Usage
Dim items As IList(Of ArraySegment(Of Message))
Dim totalCount As Integer
Dim state As Object
Me.PerformWork(items, totalCount, _
state)
protected abstract void PerformWork(
IList<ArraySegment<Message>> items,
out int totalCount,
out Object state
)
protected:
virtual void PerformWork(
IList<ArraySegment<Message^>>^ items,
[OutAttribute] int% totalCount,
[OutAttribute] Object^% state
) abstract
abstract PerformWork :
items:IList<ArraySegment<Message>> *
totalCount:int byref *
state:Object byref -> unit
protected abstract function PerformWork(
items : IList<ArraySegment<Message>>,
totalCount : int,
state : Object
)
Parameters
- items
Type: System.Collections.Generic.IList<ArraySegment<Message>>
- totalCount
Type: System.Int32%
- state
Type: System.Object%