次の方法で共有


RequestTimeoutsIEndpointConventionBuilderExtensions.WithRequestTimeout メソッド

定義

オーバーロード

WithRequestTimeout(IEndpointConventionBuilder, RequestTimeoutPolicy)

エンドポイントに対する のタイムアウト ポリシーを指定します。

WithRequestTimeout(IEndpointConventionBuilder, String)

エンドポイントに対する のタイムアウト ポリシーを指定します。

WithRequestTimeout(IEndpointConventionBuilder, TimeSpan)

エンドポイントのタイムアウトを指定します。

WithRequestTimeout(IEndpointConventionBuilder, RequestTimeoutPolicy)

ソース:
RequestTimeoutsIEndpointConventionBuilderExtensions.cs

エンドポイントに対する のタイムアウト ポリシーを指定します。

public static Microsoft.AspNetCore.Builder.IEndpointConventionBuilder WithRequestTimeout (this Microsoft.AspNetCore.Builder.IEndpointConventionBuilder builder, Microsoft.AspNetCore.Http.Timeouts.RequestTimeoutPolicy policy);
static member WithRequestTimeout : Microsoft.AspNetCore.Builder.IEndpointConventionBuilder * Microsoft.AspNetCore.Http.Timeouts.RequestTimeoutPolicy -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
<Extension()>
Public Function WithRequestTimeout (builder As IEndpointConventionBuilder, policy As RequestTimeoutPolicy) As IEndpointConventionBuilder

パラメーター

builder
IEndpointConventionBuilder

エンドポイント規則ビルダー。

policy
RequestTimeoutPolicy

要求タイムアウト ポリシー。

戻り値

元の規約ビルダー パラメーター。

適用対象

WithRequestTimeout(IEndpointConventionBuilder, String)

ソース:
RequestTimeoutsIEndpointConventionBuilderExtensions.cs

エンドポイントに対する のタイムアウト ポリシーを指定します。

public static Microsoft.AspNetCore.Builder.IEndpointConventionBuilder WithRequestTimeout (this Microsoft.AspNetCore.Builder.IEndpointConventionBuilder builder, string policyName);
static member WithRequestTimeout : Microsoft.AspNetCore.Builder.IEndpointConventionBuilder * string -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
<Extension()>
Public Function WithRequestTimeout (builder As IEndpointConventionBuilder, policyName As String) As IEndpointConventionBuilder

パラメーター

builder
IEndpointConventionBuilder

エンドポイント規則ビルダー。

policyName
String

エンドポイントに適用するポリシーの名前 (大文字と小文字は区別されません)。

戻り値

元の規約ビルダー パラメーター。

適用対象

WithRequestTimeout(IEndpointConventionBuilder, TimeSpan)

ソース:
RequestTimeoutsIEndpointConventionBuilderExtensions.cs

エンドポイントのタイムアウトを指定します。

public static Microsoft.AspNetCore.Builder.IEndpointConventionBuilder WithRequestTimeout (this Microsoft.AspNetCore.Builder.IEndpointConventionBuilder builder, TimeSpan timeout);
static member WithRequestTimeout : Microsoft.AspNetCore.Builder.IEndpointConventionBuilder * TimeSpan -> Microsoft.AspNetCore.Builder.IEndpointConventionBuilder
<Extension()>
Public Function WithRequestTimeout (builder As IEndpointConventionBuilder, timeout As TimeSpan) As IEndpointConventionBuilder

パラメーター

builder
IEndpointConventionBuilder

エンドポイント規則ビルダー。

timeout
TimeSpan

エンドポイントに適用するタイムアウト。

戻り値

元の規約ビルダー パラメーター。

適用対象