SignalR.DefaultSubscription.BeforeInvoke C# (CSharp) Method

BeforeInvoke() protected method

protected BeforeInvoke ( object state ) : void
state object
return void
        protected override void BeforeInvoke(object state)
        {
            // Update the list of cursors before invoking anything
            lock (_lockObj)
            {
                _cursors = (List<Cursor>)state;
            }
        }