Show / Hide Table of Contents

    Class RedisAccessKeys

    Redis cache access keys.

    Inheritance
    Object
    RedisAccessKeys
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Redis.dll
    Syntax
    public class RedisAccessKeys

    Constructors

    RedisAccessKeys()

    Initializes a new instance of the RedisAccessKeys class.

    Declaration
    public RedisAccessKeys ();

    RedisAccessKeys(String, String)

    Initializes a new instance of the RedisAccessKeys class.

    Declaration
    public RedisAccessKeys (string primaryKey = null, string secondaryKey = null);
    Parameters
    String primaryKey

    The current primary key that clients can use to authenticate with Redis cache.

    String secondaryKey

    The current secondary key that clients can use to authenticate with Redis cache.

    Properties

    PrimaryKey

    Gets the current primary key that clients can use to authenticate with Redis cache.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="primaryKey")]
    public string PrimaryKey { get; }
    Property Value
    String

    SecondaryKey

    Gets the current secondary key that clients can use to authenticate with Redis cache.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="secondaryKey")]
    public string SecondaryKey { get; }
    Property Value
    String

    Back to top Azure SDK for Net