Message.InfiniteTimeout Поле
Определение
Указывает на отсутствие тайм-аута.Specifies that no time-out exists.
public: static initonly TimeSpan InfiniteTimeout;
public static readonly TimeSpan InfiniteTimeout;
staticval mutable InfiniteTimeout : TimeSpan
Public Shared ReadOnly InfiniteTimeout As TimeSpan
Значение поля
Примеры
В следующем примере кода показано использование InfiniteTimeout поля.The following code example demonstrates the use of the InfiniteTimeout field.
Комментарии
TimeToBeReceivedи TimeToReachQueue требует значения, указывающего время ожидания. Для первого времени ожидания — это максимально допустимое время для получения сообщения из очереди.TimeToBeReceived and TimeToReachQueue require a value that specifies a time-out. For the former, the time-out is the maximum time allowed for a message to be received from the queue. В последнем случае время ожидания — это время, разрешенное для получения сообщения в очередь.For the latter, the time-out is the time allowed for a message to reach the queue. В обоих случаях можно указать время ожидания как количество секунд или использовать InfiniteTimeout , чтобы указать, что время ожидания не существует.In both cases, you can specify the time-out as a number of seconds or use InfiniteTimeout to indicate that no time-out exists.