@@ -23,23 +23,23 @@ internal CommandTrace(long uniqueId, long time, long duration, RedisValue[] argu
/// <summary>
/// The array composing the arguments of the command.
/// </summary>
publicRedisValue[]Arguments{get;privateset;}
publicRedisValue[]Arguments{get;}
/// <summary>
/// The amount of time needed for its execution
/// </summary>
publicTimeSpanDuration{get;privateset;}
publicTimeSpanDuration{get;}
/// <summary>
/// The time at which the logged command was processed.
/// </summary>
publicDateTimeTime{get;privateset;}
publicDateTimeTime{get;}
/// <summary>
/// A unique progressive identifier for every slow log entry.
/// </summary>
/// <remarks>The entry's unique ID can be used in order to avoid processing slow log entries multiple times (for instance you may have a script sending you an email alert for every new slow log entry). The ID is never reset in the course of the Redis server execution, only a server restart will reset it.</remarks>
publiclongUniqueId{get;privateset;}
publiclongUniqueId{get;}
/// <summary>
/// Deduces a link to the redis documentation about the specified command