7 implementations of UploadFileAsync
Aspire.Dashboard (2)
ServiceClient\DashboardClient.cs (1)
1104
public async Task<string>
UploadFileAsync
(Stream fileStream, string fileName, long expectedSize, int interactionId, string inputName, CancellationToken cancellationToken)
ServiceClient\SelectedDashboardClient.cs (1)
67
public Task<string>
UploadFileAsync
(Stream fileStream, string fileName, long expectedSize, int interactionId, string inputName, CancellationToken cancellationToken)
Aspire.Dashboard.Components.Tests (1)
tests\Shared\TestDashboardClient.cs (1)
83
public Task<string>
UploadFileAsync
(Stream fileStream, string fileName, long expectedSize, int interactionId, string inputName, CancellationToken cancellationToken)
Aspire.Dashboard.Tests (4)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
52
public Task<string>
UploadFileAsync
(Stream fileStream, string fileName, long expectedSize, int interactionId, string inputName, CancellationToken cancellationToken) => throw new NotImplementedException();
ResourceOutgoingPeerResolverTests.cs (1)
696
public Task<string>
UploadFileAsync
(Stream fileStream, string fileName, long expectedSize, int interactionId, string inputName, CancellationToken cancellationToken) => throw new NotImplementedException();
Terminal\DefaultTerminalConnectionResolverTests.cs (1)
153
public Task<string>
UploadFileAsync
(Stream fileStream, string fileName, long expectedSize, int interactionId, string inputName, CancellationToken cancellationToken) => throw new NotImplementedException();
tests\Shared\TestDashboardClient.cs (1)
83
public Task<string>
UploadFileAsync
(Stream fileStream, string fileName, long expectedSize, int interactionId, string inputName, CancellationToken cancellationToken)
1 reference to UploadFileAsync
Aspire.Dashboard (1)
Components\Dialogs\InteractionsInputDialog.razor.cs (1)
243
var fileId = await Content.DashboardClient.
UploadFileAsync
(stream, file.Name, file.Size, Content.Interaction.InteractionId, inputModel.Input.Name, _disposalCts.Token);