Commit 87960ea3 authored by Nick Craver's avatar Nick Craver

Cleanup: consolidate enums

parent 78718c4e
...@@ -11,22 +11,6 @@ ...@@ -11,22 +11,6 @@
namespace StackExchange.Redis namespace StackExchange.Redis
{ {
/// <summary>
/// Specifies the proxy that is being used to communicate to redis
/// </summary>
public enum Proxy
{
/// <summary>
/// Direct communication to the redis server(s)
/// </summary>
None,
/// <summary>
/// Communication via <a href="https://github.com/twitter/twemproxy">twemproxy</a>
/// </summary>
Twemproxy
}
/// <summary> /// <summary>
/// The options relevant to a set of redis connections /// The options relevant to a set of redis connections
/// </summary> /// </summary>
......
namespace StackExchange.Redis
{
/// <summary>
/// Specifies the proxy that is being used to communicate to redis
/// </summary>
public enum Proxy
{
/// <summary>
/// Direct communication to the redis server(s)
/// </summary>
None,
/// <summary>
/// Communication via <a href="https://github.com/twitter/twemproxy">twemproxy</a>
/// </summary>
Twemproxy
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment