Redis.WebJobs.Extensions.Listeners.RedisProcessorContext.RedisProcessorContext C# (CSharp) Méthode

RedisProcessorContext() public méthode

public RedisProcessorContext ( string channelOrKey ) : System
channelOrKey string
Résultat System
        public RedisProcessorContext(string channelOrKey)
        {
            if (string.IsNullOrEmpty(channelOrKey))
            {
                throw new ArgumentNullException("channelOrKey");
            }

            ChannelOrKey = channelOrKey;
        }
RedisProcessorContext