ServiceStack.Redis.RedisNativeClient.PSetEx C# (CSharp) 메소드

PSetEx() 공개 메소드

public PSetEx ( string key, long expireInMs, byte value ) : void
key string
expireInMs long
value byte
리턴 void
        public void PSetEx(string key, long expireInMs, byte[] value)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            SendExpectSuccess(Commands.PSetEx, key.ToUtf8Bytes(), expireInMs.ToUtf8Bytes(), value);
        }
RedisNativeClient