AtomPubClient.Timeout Property

Definition

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 = atomPubClient.timeout;
atomPubClient.timeout = uInt32;
Public Property Timeout As UInteger

Property Value

UInt32

unsigned int

uint32_t

Default value is 30000 (30 seconds). A value of UInt32.MaxValue indicates that the syndication client will wait indefinitely for a response.

Implements

Applies to