RedisClient 构造函数 (String, Int32, String) |
实例化一个客户端的对象,用于和服务器通信
命名空间:
HslCommunication.Enthernet.Redis
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public RedisClient(
string ipAddress,
int port,
string password
)
Public Sub New (
ipAddress As String,
port As Integer,
password As String
)
public:
RedisClient(
String^ ipAddress,
int port,
String^ password
)
new :
ipAddress : string *
port : int *
password : string -> RedisClient
参数
- ipAddress
- 类型:SystemString
服务器的ip地址 - port
- 类型:SystemInt32
服务器的端口号 - password
- 类型:SystemString
密码,如果服务器没有设置,密码设置为null
参见