SignalR.DefaultSubscription.GetMessageId C# (CSharp) Method

GetMessageId() private method

private GetMessageId ( Topic>.IDictionary topics, string key ) : ulong
topics Topic>.IDictionary
key string
return ulong
        private ulong GetMessageId(IDictionary<string, Topic> topics, string key)
        {
            Topic topic;
            if (topics.TryGetValue(key, out topic))
            {
                return GetMessageId(topic);
            }
            return 0;
        }

Same methods

DefaultSubscription::GetMessageId ( SignalR.Topic topic ) : ulong