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 | Stop
Both start and stop are exclusive
None = 0
Both start and stop are inclusive
Start = 1
Start is exclusive, stop is inclusive
Stop = 2
Start is inclusive, stop is exclusive