We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb8e031 + 2e23817 commit a0321c6Copy full SHA for a0321c6
projects/RabbitMQ.Client/client/api/AmqpTimestamp.cs
@@ -56,14 +56,14 @@ namespace RabbitMQ.Client
56
/// <summary>
57
/// Construct an <see cref="AmqpTimestamp"/>.
58
/// </summary>
59
- /// <param name="unixTime">Unix time.</param>
+ /// <param name="unixTime">Unix time in seconds.</param>
60
public AmqpTimestamp(long unixTime) : this()
61
{
62
UnixTime = unixTime;
63
}
64
65
66
- /// Unix time.
+ /// Unix time in seconds.
67
68
public long UnixTime { get; }
69
0 commit comments