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>
/// Retry policy
/// </summary>
public static Policy<RestResponse> RetryPolicy { get; set; }
public static ISyncPolicy<RestResponse> RetryPolicy { get; set; }
/// <summary>
/// Async retry policy
/// </summary>
public static AsyncPolicy<RestResponse> AsyncRetryPolicy { get; set; }
public static IAsyncPolicy<RestResponse> AsyncRetryPolicy { get; set; }
}
}