DiscoveryEndpoint.MaxResponseDelay Property

Definition

Gets or sets the maximum TimeSpan within which all of the ProbeMatches for a service that respond to a probe operation are sent.

public:
 property TimeSpan MaxResponseDelay { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan MaxResponseDelay { get; set; }
member this.MaxResponseDelay : TimeSpan with get, set
Public Property MaxResponseDelay As TimeSpan

Property Value

A TimeSpan instance that contains the maximum time span within which all of the ProbeMatches for a service that respond to a probe operation are sent.

Remarks

This value is a TimeSpan that specifies a time span in which all ProbeMatches for a service that respond to a single probe operation are sent. If all ProbeMatches are sent at the same time, a network storm may result. To prevent this from occurring, ProbeMatches are sent with a random delay between each ProbeMatch. The random delay is in the range of 0 to MaxResponseDelay. If MaxResponseDelay is set to 0, then the ProbeMatches messages are sent in a tight loop without any delay. Otherwise, the ProbeMatches messages are sent with some random delay such that the total time taken to send all ProbeMatches messages does not exceed the MaxResponseDelay. This value is only relevant for services, it is not used by clients.

Applies to