Skip to main content

RedisEndpoint

Assembly: ServiceStack.Redis.dll
View Source
Declaration
public class RedisEndpoint : IRedisEndpoint, IEndpoint

Properties

Host

View Source
Declaration
public string Host { get; set; }

Port

View Source
Declaration
public int Port { get; set; }

Ssl

View Source
Declaration
public bool Ssl { get; set; }

SslProtocols

View Source
Declaration
public SslProtocols? SslProtocols { get; set; }

ConnectTimeout

View Source
Declaration
public int ConnectTimeout { get; set; }

SendTimeout

View Source
Declaration
public int SendTimeout { get; set; }

ReceiveTimeout

View Source
Declaration
public int ReceiveTimeout { get; set; }

RetryTimeout

View Source
Declaration
public int RetryTimeout { get; set; }

IdleTimeOutSecs

View Source
Declaration
public int IdleTimeOutSecs { get; set; }

Db

View Source
Declaration
public long Db { get; set; }

Client

View Source
Declaration
public string Client { get; set; }

Username

ACL Username

View Source
Declaration
public string Username { get; set; }

Password

View Source
Declaration
public string Password { get; set; }

RequiresAuth

View Source
Declaration
public bool RequiresAuth { get; }

NamespacePrefix

View Source
Declaration
public string NamespacePrefix { get; set; }

Methods

ToString()

View Source
Declaration
public override string ToString()
Returns

System.String

Equals(RedisEndpoint)

View Source
Declaration
protected bool Equals(RedisEndpoint other)
Returns

System.Boolean

Parameters
TypeName
ServiceStack.Redis.RedisEndpointother

Equals(Object)

View Source
Declaration
public override bool Equals(object obj)
Returns

System.Boolean

Parameters
TypeName
System.Objectobj

GetHashCode()

View Source
Declaration
public override int GetHashCode()
Returns

System.Int32

Implements