RedisResource Constructors
ClassConstructors2 members
A resource that represents a Redis resource independent of the hosting model.
Constructor(string)Section titled Constructor(string) A resource that represents a Redis resource independent of the hosting model.
public class RedisResource{ public RedisResource( string name) { // ... }}Parameters
namestringThe name of the resource.Remarks
A resource that represents a Redis resource independent of the hosting model.
Constructor(string, ParameterResource)Section titled Constructor(string, ParameterResource) Initializes a new instance of the
RedisResource class. public class RedisResource{ public RedisResource( string name, ParameterResource password) { // ... }}Parameters
namestringThe name of the resource.passwordParameterResourceA parameter that contains the Redis server password.