Microsoft.AspNet.SignalR.Messaging.LocalEventKeyInfo.LocalEventKeyInfo C# (CSharp) Method

LocalEventKeyInfo() public method

public LocalEventKeyInfo ( string key, ulong id, MessageStore store ) : System
key string
id ulong
store MessageStore
return System
        public LocalEventKeyInfo(string key, ulong id, MessageStore<Message> store)
        {
            // Don't hold onto MessageStores that would otherwise be GC'd
            _storeReference = new WeakReference(store);
            Key = key;
            Id = id;
        }
LocalEventKeyInfo