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