ServiceStack.Redis.RedisNativeClient.GetBit C# (CSharp) Method

GetBit() public method

public GetBit ( string key, int offset ) : long
key string
offset int
return long
        public long GetBit(string key, int offset)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectLong(Commands.GetBit, key.ToUtf8Bytes(), offset.ToUtf8Bytes());
        }
RedisNativeClient