6 references to DownloadAsync
Microsoft.Extensions.AI.Abstractions.Tests (5)
Files\HostedFileClientExtensionsTests.cs (5)
300
using var stream = await client.
DownloadAsync
(hostedFileContent);
309
await Assert.ThrowsAsync<ArgumentNullException>("client", () => client.
DownloadAsync
(content));
316
await Assert.ThrowsAsync<ArgumentNullException>("hostedFile", () => client.
DownloadAsync
((HostedFileContent)null!));
333
using var stream = await client.
DownloadAsync
(hostedFileContent);
353
using var stream = await client.
DownloadAsync
(hostedFileContent, explicitOptions);
Microsoft.Extensions.AI.OpenAI.Tests (1)
OpenAIHostedFileClientIntegrationTests.cs (1)
377
using var downloadStream = await fileClient.
DownloadAsync
(firstFile, new HostedFileClientOptions { Scope = containerId });