Enum Exclude
- Namespace
- StackExchange.Redis
- Assembly
- StackExchange.Redis.StrongName.dll
When performing a range query, by default the start / stop limits are inclusive; however, both can also be specified separately as exclusive
[Flags]
public enum Exclude
Fields
Both = Start | StopBoth start and stop are exclusive
None = 0Both start and stop are inclusive
Start = 1Start is exclusive, stop is inclusive
Stop = 2Start is inclusive, stop is exclusive