7 instantiations of PolicyHttpMessageHandler
Microsoft.Extensions.Http.Polly (7)
DependencyInjection\PollyHttpClientBuilderExtensions.cs (7)
43
builder.AddHttpMessageHandler(() => new
PolicyHttpMessageHandler
(policy));
75
builder.AddHttpMessageHandler(() => new
PolicyHttpMessageHandler
(policySelector));
109
return new
PolicyHttpMessageHandler
((request) => policySelector(services, request));
146
return new
PolicyHttpMessageHandler
(policy);
182
return new
PolicyHttpMessageHandler
((request) => policySelector(registry, request));
234
builder.AddHttpMessageHandler(() => new
PolicyHttpMessageHandler
(policy));
274
return new
PolicyHttpMessageHandler
((request) =>
23 references to PolicyHttpMessageHandler
Microsoft.Extensions.Http.Polly (23)
DependencyInjection\PollyHttpClientBuilderExtensions.cs (15)
14
/// Provides extensions methods for configuring <see cref="
PolicyHttpMessageHandler
"/> message handlers as part of
20
/// Adds a <see cref="
PolicyHttpMessageHandler
"/> that will surround request execution with the provided
28
/// See the remarks on <see cref="
PolicyHttpMessageHandler
"/> for guidance on configuring policies.
48
/// Adds a <see cref="
PolicyHttpMessageHandler
"/> that will surround request execution with a policy returned
58
/// See the remarks on <see cref="
PolicyHttpMessageHandler
"/> for guidance on configuring policies.
80
/// Adds a <see cref="
PolicyHttpMessageHandler
"/> that will surround request execution with a policy returned
90
/// See the remarks on <see cref="
PolicyHttpMessageHandler
"/> for guidance on configuring policies.
115
/// Adds a <see cref="
PolicyHttpMessageHandler
"/> that will surround request execution with a policy returned
125
/// See the remarks on <see cref="
PolicyHttpMessageHandler
"/> for guidance on configuring policies.
152
/// Adds a <see cref="
PolicyHttpMessageHandler
"/> that will surround request execution with a policy returned
162
/// See the remarks on <see cref="
PolicyHttpMessageHandler
"/> for guidance on configuring policies.
188
/// Adds a <see cref="
PolicyHttpMessageHandler
"/> that will surround request execution with a <see cref="Policy"/>
197
/// See the remarks on <see cref="
PolicyHttpMessageHandler
"/> for guidance on configuring policies.
239
/// Adds a <see cref="
PolicyHttpMessageHandler
"/> that will surround request execution with a policy returned
251
/// See the remarks on <see cref="
PolicyHttpMessageHandler
"/> for guidance on configuring policies.
HttpRequestMessageExtensions.cs (2)
25
/// The <see cref="
PolicyHttpMessageHandler
"/> will attach a context to the <see cref="HttpResponseMessage"/> prior
46
/// The <see cref="
PolicyHttpMessageHandler
"/> will attach a context to the <see cref="HttpResponseMessage"/> prior
PolicyHttpMessageHandler.cs (6)
27
/// way to create a <see cref="
PolicyHttpMessageHandler
"/>.
31
/// method supports the creation of a <see cref="
PolicyHttpMessageHandler
"/> for any kind of policy. This includes
35
/// <see cref="
PolicyHttpMessageHandler
"/> and the <see cref="PollyHttpClientBuilderExtensions"/> convenience methods
67
/// The <see cref="
PolicyHttpMessageHandler
"/> attaches a context to the <see cref="HttpRequestMessage"/> prior
79
/// Creates a new <see cref="
PolicyHttpMessageHandler
"/>.
93
/// Creates a new <see cref="
PolicyHttpMessageHandler
"/>.