WebClientProtocol.Timeout 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示 XML Web Service 用戶端等待同步 XML Web Service 要求的回覆到達的時間 (單位為毫秒)。
public:
property int Timeout { int get(); void set(int value); };
public int Timeout { get; set; }
[System.ComponentModel.SettingsBindable(true)]
public int Timeout { get; set; }
member this.Timeout : int with get, set
[<System.ComponentModel.SettingsBindable(true)>]
member this.Timeout : int with get, set
Public Property Timeout As Integer
屬性值
同步呼叫 XML Web Service 的逾時值,單位為毫秒。 預設值為 100000 毫秒。
- 屬性
範例
下列範例會將 Timeout
XML Web 服務內 Math
XML Web 服務方法同步呼叫 Add
的值設定為 15000 (15 秒) 。
math.Timeout = 15000;
math.Timeout = 15000;
math.Timeout = 15000
備註
Timeout將 屬性設定為 , Timeout.Infinite 表示要求不會逾時。即使 XML Web 服務用戶端可以將 屬性設定 Timeout 為未逾時,Web 服務器仍會導致要求在伺服器端逾時。