-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMicrosoft.Practices.EnterpriseLibrary.TransientFaultHandling.xml
742 lines (742 loc) · 55.3 KB
/
Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling</name>
</assembly>
<members>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.AsyncExecution`1">
<summary>
Handles the execution and retries of the user-initiated task.
</summary>
<typeparam name="TResult">The result type of the user-initiated task.</typeparam>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.AsyncExecution">
<summary>
Provides a wrapper for a non-generic <see cref="T:System.Threading.Tasks.Task"/> and calls into the pipeline
to retry only the generic version of the <see cref="T:System.Threading.Tasks.Task"/>.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.AsyncExecution.StartAsGenericTask(System.Func{System.Threading.Tasks.Task})">
<summary>
Wraps the non-generic <see cref="T:System.Threading.Tasks.Task"/> into a generic <see cref="T:System.Threading.Tasks.Task"/>.
</summary>
<param name="taskAction">The task to wrap.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> that wraps the non-generic <see cref="T:System.Threading.Tasks.Task"/>.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Guard">
<summary>
Implements the common guard methods.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Guard.ArgumentNotNullOrEmptyString(System.String,System.String)">
<summary>
Checks a string argument to ensure that it isn't null or empty.
</summary>
<param name="argumentValue">The argument value to check.</param>
<param name="argumentName">The name of the argument.</param>
<returns>The return value should be ignored. It is intended to be used only when validating arguments during instance creation (for example, when calling the base constructor).</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Guard.ArgumentNotNull(System.Object,System.String)">
<summary>
Checks an argument to ensure that it isn't null.
</summary>
<param name="argumentValue">The argument value to check.</param>
<param name="argumentName">The name of the argument.</param>
<returns>The return value should be ignored. It is intended to be used only when validating arguments during instance creation (for example, when calling the base constructor).</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Guard.ArgumentNotNegativeValue(System.Int32,System.String)">
<summary>
Checks an argument to ensure that its 32-bit signed value isn't negative.
</summary>
<param name="argumentValue">The <see cref="T:System.Int32"/> value of the argument.</param>
<param name="argumentName">The name of the argument for diagnostic purposes.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Guard.ArgumentNotNegativeValue(System.Int64,System.String)">
<summary>
Checks an argument to ensure that its 64-bit signed value isn't negative.
</summary>
<param name="argumentValue">The <see cref="T:System.Int64"/> value of the argument.</param>
<param name="argumentName">The name of the argument for diagnostic purposes.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Guard.ArgumentNotGreaterThan(System.Double,System.Double,System.String)">
<summary>
Checks an argument to ensure that its value doesn't exceed the specified ceiling baseline.
</summary>
<param name="argumentValue">The <see cref="T:System.Double"/> value of the argument.</param>
<param name="ceilingValue">The <see cref="T:System.Double"/> ceiling value of the argument.</param>
<param name="argumentName">The name of the argument for diagnostic purposes.</param>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy">
<summary>
Defines an interface that must be implemented by custom components responsible for detecting specific transient conditions.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy.IsTransient(System.Exception)">
<summary>
Determines whether the specified exception represents a transient failure that can be compensated by a retry.
</summary>
<param name="ex">The exception object to be verified.</param>
<returns>true if the specified exception is considered as transient; otherwise, false.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.ArgumentCannotBeGreaterThanBaseline">
<summary>
Looks up a localized string similar to The specified argument {0} cannot be greater than its ceiling value of {1}..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.ArgumentCannotBeNegative">
<summary>
Looks up a localized string similar to The specified argument {0} cannot be initialized with a negative value..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.DefaultRetryStrategyMappingNotFound">
<summary>
Looks up a localized string similar to Default retry strategy for technology {0}, named '{1}', is not defined..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.DefaultRetryStrategyNotFound">
<summary>
Looks up a localized string similar to Default retry strategy for technology {0} was not not defined, and there is no overall default strategy..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.ExceptionRetryManagerAlreadySet">
<summary>
Looks up a localized string similar to The RetryManager is already set..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.ExceptionRetryManagerNotSet">
<summary>
Looks up a localized string similar to The default RetryManager has not been set. Set it by invoking the RetryManager.SetDefault static method, or if you are using declarative configuration, you can invoke the RetryPolicyFactory.CreateDefault() method to automatically create the retry manager from the configuration file..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.RetryLimitExceeded">
<summary>
Looks up a localized string similar to The action has exceeded its defined retry limit..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.RetryStrategyNotFound">
<summary>
Looks up a localized string similar to The retry strategy with name '{0}' cannot be found..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.StringCannotBeEmpty">
<summary>
Looks up a localized string similar to The specified string argument {0} must not be empty..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.TaskCannotBeNull">
<summary>
Looks up a localized string similar to The specified argument '{0}' cannot return a null task when invoked..
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Properties.Resources.TaskMustBeScheduled">
<summary>
Looks up a localized string similar to The specified argument '{0}' must return a scheduled task (also known as "hot" task) when invoked..
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryingEventArgs">
<summary>
Contains information that is required for the <see cref="E:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.Retrying"/> event.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryingEventArgs.#ctor(System.Int32,System.TimeSpan,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryingEventArgs"/> class.
</summary>
<param name="currentRetryCount">The current retry attempt count.</param>
<param name="delay">The delay that indicates how long the current thread will be suspended before the next iteration is invoked.</param>
<param name="lastException">The exception that caused the retry conditions to occur.</param>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryingEventArgs.CurrentRetryCount">
<summary>
Gets the current retry count.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryingEventArgs.Delay">
<summary>
Gets the delay that indicates how long the current thread will be suspended before the next iteration is invoked.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryingEventArgs.LastException">
<summary>
Gets the exception that caused the retry conditions to occur.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryLimitExceededException">
<summary>
The special type of exception that provides managed exit from a retry loop. The user code can use this
exception to notify the retry policy that no further retry attempts are required.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryLimitExceededException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryLimitExceededException"/> class with a default error message.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryLimitExceededException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryLimitExceededException"/> class with a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryLimitExceededException.#ctor(System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryLimitExceededException"/> class with a reference to the inner exception
that is the cause of this exception.
</summary>
<param name="innerException">The exception that is the cause of the current exception.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryLimitExceededException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryLimitExceededException"/> class with a specified error message and inner exception.
</summary>
<param name="message">The message that describes the error.</param>
<param name="innerException">The exception that is the cause of the current exception.</param>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager">
<summary>
Provides the entry point to the retry functionality.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.SetDefault(Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager,System.Boolean)">
<summary>
Sets the specified retry manager as the default retry manager.
</summary>
<param name="retryManager">The retry manager.</param>
<param name="throwIfSet">true to throw an exception if the manager is already set; otherwise, false. Defaults to <see langword="true"/>.</param>
<exception cref="T:System.InvalidOperationException">The singleton is already set and <paramref name="throwIfSet"/> is true.</exception>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy})">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager"/> class.
</summary>
<param name="retryStrategies">The complete set of retry strategies.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy},System.String)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager"/> class with the specified retry strategies and default retry strategy name.
</summary>
<param name="retryStrategies">The complete set of retry strategies.</param>
<param name="defaultRetryStrategyName">The default retry strategy.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy},System.String,System.Collections.Generic.IDictionary{System.String,System.String})">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager"/> class with the specified retry strategies and defaults.
</summary>
<param name="retryStrategies">The complete set of retry strategies.</param>
<param name="defaultRetryStrategyName">The default retry strategy.</param>
<param name="defaultRetryStrategyNamesMap">The names of the default strategies for different technologies.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.GetRetryPolicy``1">
<summary>
Returns a retry policy with the specified error detection strategy and the default retry strategy defined in the configuration.
</summary>
<typeparam name="T">The type that implements the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy"/> interface that is responsible for detecting transient conditions.</typeparam>
<returns>A new retry policy with the specified error detection strategy and the default retry strategy defined in the configuration.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.GetRetryPolicy``1(System.String)">
<summary>
Returns a retry policy with the specified error detection strategy and retry strategy.
</summary>
<typeparam name="T">The type that implements the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy"/> interface that is responsible for detecting transient conditions.</typeparam>
<param name="retryStrategyName">The retry strategy name, as defined in the configuration.</param>
<returns>A new retry policy with the specified error detection strategy and the default retry strategy defined in the configuration.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.GetRetryStrategy">
<summary>
Returns the default retry strategy defined in the configuration.
</summary>
<returns>The retry strategy that matches the default strategy.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.GetRetryStrategy(System.String)">
<summary>
Returns the retry strategy that matches the specified name.
</summary>
<param name="retryStrategyName">The retry strategy name.</param>
<returns>The retry strategy that matches the specified name.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.GetDefaultRetryStrategy(System.String)">
<summary>
Returns the retry strategy for the specified technology.
</summary>
<param name="technology">The techonolgy to get the default retry strategy for.</param>
<returns>The retry strategy for the specified technology.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.Instance">
<summary>
Gets the default <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager"/> for the application.
</summary>
<remarks>You can update the default retry manager by calling the <see cref="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.SetDefault(Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager,System.Boolean)"/> method.</remarks>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryManager.DefaultRetryStrategyName">
<summary>
Gets or sets the default retry strategy name.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy">
<summary>
Provides the base implementation of the retry mechanism for unreliable actions and transient conditions.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.#ctor(Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy,Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy"/> class with the specified number of retry attempts and parameters defining the progressive delay between retries.
</summary>
<param name="errorDetectionStrategy">The <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy"/> that is responsible for detecting transient conditions.</param>
<param name="retryStrategy">The strategy to use for this retry policy.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.#ctor(Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy"/> class with the specified number of retry attempts and default fixed time interval between retries.
</summary>
<param name="errorDetectionStrategy">The <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy"/> that is responsible for detecting transient conditions.</param>
<param name="retryCount">The number of retry attempts.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.#ctor(Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy,System.Int32,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy"/> class with the specified number of retry attempts and fixed time interval between retries.
</summary>
<param name="errorDetectionStrategy">The <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy"/> that is responsible for detecting transient conditions.</param>
<param name="retryCount">The number of retry attempts.</param>
<param name="retryInterval">The interval between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.#ctor(Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy,System.Int32,System.TimeSpan,System.TimeSpan,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy"/> class with the specified number of retry attempts and backoff parameters for calculating the exponential delay between retries.
</summary>
<param name="errorDetectionStrategy">The <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy"/> that is responsible for detecting transient conditions.</param>
<param name="retryCount">The number of retry attempts.</param>
<param name="minBackoff">The minimum backoff time.</param>
<param name="maxBackoff">The maximum backoff time.</param>
<param name="deltaBackoff">The time value that will be used to calculate a random delta in the exponential delay between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.#ctor(Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy,System.Int32,System.TimeSpan,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy"/> class with the specified number of retry attempts and parameters defining the progressive delay between retries.
</summary>
<param name="errorDetectionStrategy">The <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy"/> that is responsible for detecting transient conditions.</param>
<param name="retryCount">The number of retry attempts.</param>
<param name="initialInterval">The initial interval that will apply for the first retry.</param>
<param name="increment">The incremental time value that will be used to calculate the progressive delay between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAction(System.Action)">
<summary>
Repetitively executes the specified action while it satisfies the current retry policy.
</summary>
<param name="action">A delegate that represents the executable action that doesn't return any results.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAction``1(System.Func{``0})">
<summary>
Repetitively executes the specified action while it satisfies the current retry policy.
</summary>
<typeparam name="TResult">The type of result expected from the executable action.</typeparam>
<param name="func">A delegate that represents the executable action that returns the result of type <typeparamref name="TResult"/>.</param>
<returns>The result from the action.</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAsync(System.Func{System.Threading.Tasks.Task})">
<summary>
Repetitively executes the specified asynchronous task while it satisfies the current retry policy.
</summary>
<param name="taskAction">A function that returns a started task (also known as "hot" task).</param>
<returns>
A task that will run to completion if the original task completes successfully (either the
first time or after retrying transient failures). If the task fails with a non-transient error or
the retry limit is reached, the returned task will transition to a faulted state and the exception must be observed.
</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAsync(System.Func{System.Threading.Tasks.Task},System.Threading.CancellationToken)">
<summary>
Repetitively executes the specified asynchronous task while it satisfies the current retry policy.
</summary>
<param name="taskAction">A function that returns a started task (also known as "hot" task).</param>
<param name="cancellationToken">The token used to cancel the retry operation. This token does not cancel the execution of the asynchronous task.</param>
<returns>
Returns a task that will run to completion if the original task completes successfully (either the
first time or after retrying transient failures). If the task fails with a non-transient error or
the retry limit is reached, the returned task will transition to a faulted state and the exception must be observed.
</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAsync``1(System.Func{System.Threading.Tasks.Task{``0}})">
<summary>
Repeatedly executes the specified asynchronous task while it satisfies the current retry policy.
</summary>
<param name="taskFunc">A function that returns a started task (also known as "hot" task).</param>
<returns>
Returns a task that will run to completion if the original task completes successfully (either the
first time or after retrying transient failures). If the task fails with a non-transient error or
the retry limit is reached, the returned task will transition to a faulted state and the exception must be observed.
</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ExecuteAsync``1(System.Func{System.Threading.Tasks.Task{``0}},System.Threading.CancellationToken)">
<summary>
Repeatedly executes the specified asynchronous task while it satisfies the current retry policy.
</summary>
<param name="taskFunc">A function that returns a started task (also known as "hot" task).</param>
<param name="cancellationToken">The token used to cancel the retry operation. This token does not cancel the execution of the asynchronous task.</param>
<returns>
Returns a task that will run to completion if the original task completes successfully (either the
first time or after retrying transient failures). If the task fails with a non-transient error or
the retry limit is reached, the returned task will transition to a faulted state and the exception must be observed.
</returns>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.OnRetrying(System.Int32,System.Exception,System.TimeSpan)">
<summary>
Notifies the subscribers whenever a retry condition is encountered.
</summary>
<param name="retryCount">The current retry attempt count.</param>
<param name="lastError">The exception that caused the retry conditions to occur.</param>
<param name="delay">The delay that indicates how long the current thread will be suspended before the next iteration is invoked.</param>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.NoRetry">
<summary>
Returns a default policy that performs no retries, but invokes the action only once.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.DefaultFixed">
<summary>
Returns a default policy that implements a fixed retry interval configured with the default <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval"/> retry strategy.
The default retry policy treats all caught exceptions as transient errors.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.DefaultProgressive">
<summary>
Returns a default policy that implements a progressive retry interval configured with the default <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental"/> retry strategy.
The default retry policy treats all caught exceptions as transient errors.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.DefaultExponential">
<summary>
Returns a default policy that implements a random exponential retry interval configured with the default <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval"/> retry strategy.
The default retry policy treats all caught exceptions as transient errors.
</summary>
</member>
<member name="E:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.Retrying">
<summary>
An instance of a callback delegate that will be invoked whenever a retry condition is encountered.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.RetryStrategy">
<summary>
Gets the retry strategy.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.ErrorDetectionStrategy">
<summary>
Gets the instance of the error detection strategy.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.TransientErrorIgnoreStrategy">
<summary>
Implements a strategy that ignores any transient errors.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.TransientErrorIgnoreStrategy.IsTransient(System.Exception)">
<summary>
Always returns false.
</summary>
<param name="ex">The exception.</param>
<returns>Always false.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.TransientErrorCatchAllStrategy">
<summary>
Implements a strategy that treats all exceptions as transient errors.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy.TransientErrorCatchAllStrategy.IsTransient(System.Exception)">
<summary>
Always returns true.
</summary>
<param name="ex">The exception.</param>
<returns>Always true.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1">
<summary>
Provides a generic version of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy"/> class.
</summary>
<typeparam name="T">The type that implements the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ITransientErrorDetectionStrategy"/> interface that is responsible for detecting transient conditions.</typeparam>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1.#ctor(Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1"/> class with the specified number of retry attempts and parameters defining the progressive delay between retries.
</summary>
<param name="retryStrategy">The strategy to use for this retry policy.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1.#ctor(System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1"/> class with the specified number of retry attempts and the default fixed time interval between retries.
</summary>
<param name="retryCount">The number of retry attempts.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1.#ctor(System.Int32,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1"/> class with the specified number of retry attempts and a fixed time interval between retries.
</summary>
<param name="retryCount">The number of retry attempts.</param>
<param name="retryInterval">The interval between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1.#ctor(System.Int32,System.TimeSpan,System.TimeSpan,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1"/> class with the specified number of retry attempts and backoff parameters for calculating the exponential delay between retries.
</summary>
<param name="retryCount">The number of retry attempts.</param>
<param name="minBackoff">The minimum backoff time.</param>
<param name="maxBackoff">The maximum backoff time.</param>
<param name="deltaBackoff">The time value that will be used to calculate a random delta in the exponential delay between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1.#ctor(System.Int32,System.TimeSpan,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryPolicy`1"/> class with the specified number of retry attempts and parameters defining the progressive delay between retries.
</summary>
<param name="retryCount">The number of retry attempts.</param>
<param name="initialInterval">The initial interval that will apply for the first retry.</param>
<param name="increment">The incremental time value that will be used to calculate the progressive delay between retries.</param>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff">
<summary>
A retry strategy with backoff parameters for calculating the exponential delay between retries.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy">
<summary>
Represents a retry strategy that determines the number of retry attempts and the interval between retries.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultClientRetryCount">
<summary>
Represents the default number of retry attempts.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultClientBackoff">
<summary>
Represents the default amount of time used when calculating a random delta in the exponential delay between retries.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultMaxBackoff">
<summary>
Represents the default maximum amount of time used when calculating the exponential delay between retries.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultMinBackoff">
<summary>
Represents the default minimum amount of time used when calculating the exponential delay between retries.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultRetryInterval">
<summary>
Represents the default interval between retries.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultRetryIncrement">
<summary>
Represents the default time increment between retry attempts in the progressive delay policy.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultFirstFastRetry">
<summary>
Represents the default flag indicating whether the first retry attempt will be made immediately,
whereas subsequent retries will remain subject to the retry interval.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.#ctor(System.String,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy"/> class.
</summary>
<param name="name">The name of the retry strategy.</param>
<param name="firstFastRetry">true to immediately retry in the first attempt; otherwise, false. The subsequent retries will remain subject to the configured retry interval.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.GetShouldRetry">
<summary>
Returns the corresponding ShouldRetry delegate.
</summary>
<returns>The ShouldRetry delegate.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.NoRetry">
<summary>
Returns a default policy that performs no retries, but invokes the action only once.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultFixed">
<summary>
Returns a default policy that implements a fixed retry interval configured with the <see cref="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultClientRetryCount"/> and <see cref="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultRetryInterval"/> parameters.
The default retry policy treats all caught exceptions as transient errors.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultProgressive">
<summary>
Returns a default policy that implements a progressive retry interval configured with the <see cref="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultClientRetryCount"/>, <see cref="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultRetryInterval"/>, and <see cref="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultRetryIncrement"/> parameters.
The default retry policy treats all caught exceptions as transient errors.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultExponential">
<summary>
Returns a default policy that implements a random exponential retry interval configured with the <see cref="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultClientRetryCount"/>, <see cref="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultMinBackoff"/>, <see cref="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultMaxBackoff"/>, and <see cref="F:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.DefaultClientBackoff"/> parameters.
The default retry policy treats all caught exceptions as transient errors.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.FastFirstRetry">
<summary>
Gets or sets a value indicating whether the first retry attempt will be made immediately,
whereas subsequent retries will remain subject to the retry interval.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.RetryStrategy.Name">
<summary>
Gets the name of the retry strategy.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff.#ctor(System.Int32,System.TimeSpan,System.TimeSpan,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff"/> class with the specified retry settings.
</summary>
<param name="retryCount">The maximum number of retry attempts.</param>
<param name="minBackoff">The minimum backoff time</param>
<param name="maxBackoff">The maximum backoff time.</param>
<param name="deltaBackoff">The value that will be used to calculate a random delta in the exponential delay between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff.#ctor(System.String,System.Int32,System.TimeSpan,System.TimeSpan,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff"/> class with the specified name and retry settings.
</summary>
<param name="name">The name of the retry strategy.</param>
<param name="retryCount">The maximum number of retry attempts.</param>
<param name="minBackoff">The minimum backoff time</param>
<param name="maxBackoff">The maximum backoff time.</param>
<param name="deltaBackoff">The value that will be used to calculate a random delta in the exponential delay between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff.#ctor(System.String,System.Int32,System.TimeSpan,System.TimeSpan,System.TimeSpan,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff"/> class with the specified name, retry settings, and fast retry option.
</summary>
<param name="name">The name of the retry strategy.</param>
<param name="retryCount">The maximum number of retry attempts.</param>
<param name="minBackoff">The minimum backoff time</param>
<param name="maxBackoff">The maximum backoff time.</param>
<param name="deltaBackoff">The value that will be used to calculate a random delta in the exponential delay between retries.</param>
<param name="firstFastRetry">true to immediately retry in the first attempt; otherwise, false. The subsequent retries will remain subject to the configured retry interval.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ExponentialBackoff.GetShouldRetry">
<summary>
Returns the corresponding ShouldRetry delegate.
</summary>
<returns>The ShouldRetry delegate.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval">
<summary>
Represents a retry strategy with a specified number of retry attempts and a default, fixed time interval between retries.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval.#ctor(System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval"/> class with the specified number of retry attempts.
</summary>
<param name="retryCount">The number of retry attempts.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval.#ctor(System.Int32,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval"/> class with the specified number of retry attempts and time interval.
</summary>
<param name="retryCount">The number of retry attempts.</param>
<param name="retryInterval">The time interval between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval.#ctor(System.String,System.Int32,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval"/> class with the specified number of retry attempts, time interval, and retry strategy.
</summary>
<param name="name">The retry strategy name.</param>
<param name="retryCount">The number of retry attempts.</param>
<param name="retryInterval">The time interval between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval.#ctor(System.String,System.Int32,System.TimeSpan,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval"/> class with the specified number of retry attempts, time interval, retry strategy, and fast start option.
</summary>
<param name="name">The retry strategy name.</param>
<param name="retryCount">The number of retry attempts.</param>
<param name="retryInterval">The time interval between retries.</param>
<param name="firstFastRetry">true to immediately retry in the first attempt; otherwise, false. The subsequent retries will remain subject to the configured retry interval.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.FixedInterval.GetShouldRetry">
<summary>
Returns the corresponding ShouldRetry delegate.
</summary>
<returns>The ShouldRetry delegate.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental">
<summary>
A retry strategy with a specified number of retry attempts and an incremental time interval between retries.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental.#ctor(System.Int32,System.TimeSpan,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental"/> class with the specified retry settings.
</summary>
<param name="retryCount">The number of retry attempts.</param>
<param name="initialInterval">The initial interval that will apply for the first retry.</param>
<param name="increment">The incremental time value that will be used to calculate the progressive delay between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental.#ctor(System.String,System.Int32,System.TimeSpan,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental"/> class with the specified name and retry settings.
</summary>
<param name="name">The retry strategy name.</param>
<param name="retryCount">The number of retry attempts.</param>
<param name="initialInterval">The initial interval that will apply for the first retry.</param>
<param name="increment">The incremental time value that will be used to calculate the progressive delay between retries.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental.#ctor(System.String,System.Int32,System.TimeSpan,System.TimeSpan,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental"/> class with the specified number of retry attempts, time interval, retry strategy, and fast start option.
</summary>
<param name="name">The retry strategy name.</param>
<param name="retryCount">The number of retry attempts.</param>
<param name="initialInterval">The initial interval that will apply for the first retry.</param>
<param name="increment">The incremental time value that will be used to calculate the progressive delay between retries.</param>
<param name="firstFastRetry">true to immediately retry in the first attempt; otherwise, false. The subsequent retries will remain subject to the configured retry interval.</param>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Incremental.GetShouldRetry">
<summary>
Returns the corresponding ShouldRetry delegate.
</summary>
<returns>The ShouldRetry delegate.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.ShouldRetry">
<summary>
Defines a callback delegate that will be invoked whenever a retry condition is encountered.
</summary>
<param name="retryCount">The current retry attempt count.</param>
<param name="lastException">The exception that caused the retry conditions to occur.</param>
<param name="delay">The delay that indicates how long the current thread will be suspended before the next iteration is invoked.</param>
<returns><see langword="true"/> if a retry is allowed; otherwise, <see langword="false"/>.</returns>
</member>
</members>
</doc>