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

Multi() private method

private Multi ( ) : void
return void
        internal void Multi()
        {
            //make sure socket is connected. Otherwise, fetch of server info will interfere
            //with pipeline
            AssertConnectedSocket();
            SendWithoutRead(Commands.Multi);
        }
RedisNativeClient