Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

MsmqBindingBase::TimeToLive Property

 

Gets or sets the interval of time that indicates how long the messages processed by this binding can be in the queue before they expire.

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property TimeSpan TimeToLive {
	TimeSpan get();
	void set(TimeSpan value);
}

Property Value

Type: System::TimeSpan

The TimeSpan that indicates how long the messages can be in the queue before they expire. The default value is 1 day.

The TimeToLive property is set to ensure that time-sensitive messages do not become stale before they are processed by the receiving applications. A message in a queue that is not accessed by the receiving application within the time interval specified is expired. Expired messages are sent to a special queue called the dead-letter queue. The location of the dead-letter queue is set with the DeadLetterQueue property or to the appropriate default, based on assurances.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft