-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6745e2b
commit 812d633
Showing
7 changed files
with
568 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
namespace Redis.OM | ||
{ | ||
/// <summary> | ||
/// Indicates when this operation should be performed (only some variations are legal in a given context). | ||
/// </summary> | ||
public enum WhenKey | ||
{ | ||
/// <summary> | ||
/// The operation should occur whether or not there is an existing value. | ||
/// </summary> | ||
Always, | ||
|
||
/// <summary> | ||
/// The operation should only occur when there is an existing value. | ||
/// </summary> | ||
Exists, | ||
|
||
/// <summary> | ||
/// The operation should only occur when there is not an existing value. | ||
/// </summary> | ||
NotExists, | ||
} | ||
} |
Oops, something went wrong.