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