openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
OpenAI/src/Generated/Internal/CancellationTokenExtensions.cs
14lines · modecode
| 1 | // <auto-generated/> |
| 2 | |
| 3 | #nullable disable |
| 4 | |
| 5 | using System.ClientModel.Primitives; |
| 6 | using System.Threading; |
| 7 | |
| 8 | namespace OpenAI |
| 9 | { |
| 10 | internal static partial class CancellationTokenExtensions |
| 11 | { |
| 12 | public static RequestOptions ToRequestOptions(this CancellationToken cancellationToken) => cancellationToken.CanBeCanceled ? new RequestOptions { CancellationToken = cancellationToken } : null; |
| 13 | } |
| 14 | } |
| 15 | |