3 implementations of UploadFileAsync
aspire (1)
Backchannel\AppHostCliBackchannel.cs (1)
557public async Task<UploadFileResponse> UploadFileAsync(string filePath, string fileName, int interactionId, string inputName, CancellationToken cancellationToken)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
1123public Task<UploadFileResponse> UploadFileAsync(string filePath, string fileName, int interactionId, string inputName, CancellationToken cancellationToken)
TestServices\TestAppHostCliBackchannel.cs (1)
284public async Task<UploadFileResponse> UploadFileAsync(string filePath, string fileName, int interactionId, string inputName, CancellationToken cancellationToken)
1 reference to UploadFileAsync
aspire (1)
Commands\PipelineCommandBase.cs (1)
1340var uploadResponse = await backchannel.UploadFileAsync(fullPath, fileName, interactionIdValue, inputName, cancellationToken);