File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
src/StackExchange.Redis/Interfaces Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1698,15 +1698,15 @@ IEnumerable<SortedSetEntry> SortedSetScan(RedisKey key,
1698
1698
double ? SortedSetScore ( RedisKey key , RedisValue member , CommandFlags flags = CommandFlags . None ) ;
1699
1699
1700
1700
/// <summary>
1701
- /// Returns the scores of members in the sorted set at key.
1702
- /// If a member does not exist in the sorted set, or key does not exist, nil is returned.
1701
+ /// Returns the scores of members in the sorted set at <paramref name=" key"/> .
1702
+ /// If a member does not exist in the sorted set, or key does not exist, <see langword="null"/> is returned.
1703
1703
/// </summary>
1704
1704
/// <param name="key">The key of the sorted set.</param>
1705
1705
/// <param name="members">The members to get a score for.</param>
1706
1706
/// <param name="flags">The flags to use for this operation.</param>
1707
1707
/// <returns>
1708
- /// The scores of the members in the same order as the <paramref name="members"/> array. If a member does
1709
- /// not exist in the set, nil is returned.
1708
+ /// The scores of the members in the same order as the <paramref name="members"/> array.
1709
+ /// If a member does not exist in the set, <see langword="null"/> is returned.
1710
1710
/// </returns>
1711
1711
/// <remarks>https://redis.io/commands/zmscore</remarks>
1712
1712
double ? [ ] SortedSetScore ( RedisKey key , RedisValue [ ] members , CommandFlags flags = CommandFlags . None ) ;
Original file line number Diff line number Diff line change @@ -1651,15 +1651,15 @@ IAsyncEnumerable<SortedSetEntry> SortedSetScanAsync(RedisKey key,
1651
1651
Task < double ? > SortedSetScoreAsync ( RedisKey key , RedisValue member , CommandFlags flags = CommandFlags . None ) ;
1652
1652
1653
1653
/// <summary>
1654
- /// Returns the scores of members in the sorted set at key.
1655
- /// If a member does not exist in the sorted set, or key does not exist, nil is returned.
1654
+ /// Returns the scores of members in the sorted set at <paramref name=" key"/> .
1655
+ /// If a member does not exist in the sorted set, or key does not exist, <see langword="null"/> is returned.
1656
1656
/// </summary>
1657
1657
/// <param name="key">The key of the sorted set.</param>
1658
1658
/// <param name="members">The members to get a score for.</param>
1659
1659
/// <param name="flags">The flags to use for this operation.</param>
1660
1660
/// <returns>
1661
- /// The scores of the members in the same order as the <paramref name="members"/> array. If a member does
1662
- /// not exist in the set, nil is returned.
1661
+ /// The scores of the members in the same order as the <paramref name="members"/> array.
1662
+ /// If a member does not exist in the set, <see langword="null"/> is returned.
1663
1663
/// </returns>
1664
1664
/// <remarks>https://redis.io/commands/zmscore</remarks>
1665
1665
Task < double ? [ ] > SortedSetScoreAsync ( RedisKey key , RedisValue [ ] members , CommandFlags flags = CommandFlags . None ) ;
You can’t perform that action at this time.
0 commit comments