6 references to DownloadAsDataContentAsync
Microsoft.Extensions.AI.Abstractions.Tests (5)
Files\HostedFileClientExtensionsTests.cs (5)
372
var result = await client.
DownloadAsDataContentAsync
("file-dc");
382
await Assert.ThrowsAsync<ArgumentNullException>("client", () => client.
DownloadAsDataContentAsync
("file-1"));
389
await Assert.ThrowsAsync<ArgumentNullException>("fileId", () => client.
DownloadAsDataContentAsync
(null!));
396
await Assert.ThrowsAsync<ArgumentException>("fileId", () => client.
DownloadAsDataContentAsync
(string.Empty));
403
await Assert.ThrowsAsync<ArgumentException>("fileId", () => client.
DownloadAsDataContentAsync
(" "));
Microsoft.Extensions.AI.OpenAI.Tests (1)
OpenAIHostedFileClientIntegrationTests.cs (1)
211
var dataContent = await RetryAsync(() => _client.
DownloadAsDataContentAsync
(uploadedFileId));