< Summary

Information
Class: /home/wethinkcode/student_work/csharp/GroupProject/super-cool-group/weshare-qa/GeneratedApiCode/src/Applications.WeShare.Swagger/Client/RetryConfiguration.cs
Assembly: Default
File(s): /home/wethinkcode/student_work/csharp/GroupProject/super-cool-group/weshare-qa/GeneratedApiCode/src/Applications.WeShare.Swagger/Client/RetryConfiguration.cs
Line coverage
50%
Covered lines: 1
Uncovered lines: 1
Coverable lines: 2
Total lines: 31
Line coverage: 50%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

File(s)

/home/wethinkcode/student_work/csharp/GroupProject/super-cool-group/weshare-qa/GeneratedApiCode/src/Applications.WeShare.Swagger/Client/RetryConfiguration.cs

#LineLine coverage
 1/*
 2 * WeShare API
 3 *
 4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 5 *
 6 * The version of the OpenAPI document: 1.0
 7 * Generated by: https://github.com/openapitools/openapi-generator.git
 8 */
 9
 10
 11using Polly;
 12using RestSharp;
 13
 14namespace Applications.WeShare.Swagger.Client
 15{
 16    /// <summary>
 17    /// Configuration class to set the polly retry policies to be applied to the requests.
 18    /// </summary>
 19    public static class RetryConfiguration
 20    {
 21        /// <summary>
 22        /// Retry policy
 23        /// </summary>
 3424        public static Policy<RestResponse> RetryPolicy { get; set; }
 25
 26        /// <summary>
 27        /// Async retry policy
 28        /// </summary>
 029        public static AsyncPolicy<RestResponse> AsyncRetryPolicy { get; set; }
 30    }
 31}