Skip to content

Commit

Permalink
Update src/OrchardCore/OrchardCore.Redis.Abstractions/RedisOptions.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mazuryv committed May 6, 2022
1 parent 6af7f17 commit 3cb1f66
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,21 @@

namespace OrchardCore.Redis
{
/// <summary>
/// Configuration options for <see cref="IRedisService"/>.
/// </summary>
public class RedisOptions
{
/// <summary>
/// The configuration used to connect to Redis.
/// </summary>
public ConfigurationOptions ConfigurationOptions => ConfigurationOptions.Parse(Configuration);

/// <summary>
/// Original configuration string used to connect to Redis
/// The configuration string used to connect to Redis.
/// </summary>
public string Configuration { get; set; }

/// <summary>
/// Prefix alowing a Redis instance to be shared.
/// </summary>
Expand Down

0 comments on commit 3cb1f66

Please sign in to comment.