update C# samples

This commit is contained in:
William Cheng 2025-03-12 18:18:16 +08:00
parent 7f40ce0dd8
commit e40f9e3801

View File

@ -21,11 +21,11 @@ namespace Org.OpenAPITools.Client
/// <summary> /// <summary>
/// Retry policy /// Retry policy
/// </summary> /// </summary>
public static Policy<RestResponse> RetryPolicy { get; set; } public static ISyncPolicy<RestResponse> RetryPolicy { get; set; }
/// <summary> /// <summary>
/// Async retry policy /// Async retry policy
/// </summary> /// </summary>
public static AsyncPolicy<RestResponse> AsyncRetryPolicy { get; set; } public static IAsyncPolicy<RestResponse> AsyncRetryPolicy { get; set; }
} }
} }