Redis.WebJobs.Extensions.Listeners.RedisProcessorContext.RedisProcessorContext C# (CSharp) Метод

RedisProcessorContext() публичный Метод

public RedisProcessorContext ( string channelOrKey ) : System
channelOrKey string
Результат System
        public RedisProcessorContext(string channelOrKey)
        {
            if (string.IsNullOrEmpty(channelOrKey))
            {
                throw new ArgumentNullException("channelOrKey");
            }

            ChannelOrKey = channelOrKey;
        }
RedisProcessorContext