SyndicationClient.Timeout Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the maximum amount of time, in milliseconds, to wait for any of the asynchronous operations to complete. If the operation is not complete within this amount of time, it will fail with a status code indicating that it timed out.
public:
property unsigned int Timeout { unsigned int get(); void set(unsigned int value); };
uint32_t Timeout();
void Timeout(uint32_t value);
public uint Timeout { get; set; }
var uInt32 = syndicationClient.timeout;
syndicationClient.timeout = uInt32;
Public Property Timeout As UInteger
Property Value
Default value is 30000 (30 seconds). A value of UInt32.MaxValue indicates that the syndication client will wait indefinitely for a response.