示例#1
0
 // 摘要:
 //     判断会话中是否存在指定key
 //
 // 参数:
 //   name:
 //     键值
 //
 public bool IsExistKey(string name)
 {
     return(RedisProvider.SessionHashExist(SessionID, name));
     //RedisBase.Hash_Exist<object>(SessionID, name);
 }