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

SlaveOf() public method

public SlaveOf ( string hostname, int port ) : void
hostname string
port int
return void
        public void SlaveOf(string hostname, int port)
        {
            SendExpectSuccess(Commands.SlaveOf, hostname.ToUtf8Bytes(), port.ToUtf8Bytes());
        }
RedisNativeClient