2 implementations of CreateEntry
Aspire.Hosting (1)
Dashboard\InteractionFileUploadStore.cs (1)
43public (string FileId, string FilePath) CreateEntry(string originalFileName, int interactionId, string inputName)
Aspire.Hosting.Tests (1)
tests\Shared\TestInteractionFileUploadStore.cs (1)
29public (string FileId, string FilePath) CreateEntry(string originalFileName, int interactionId, string inputName)
3 references to CreateEntry
Aspire.Hosting (2)
Backchannel\AppHostRpcTarget.cs (1)
270var (fileId, filePath) = fileUploadStore.CreateEntry(request.FileName, request.InteractionId, request.InputName);
Dashboard\DashboardService.cs (1)
536(fileId, path) = fileUploadStore.CreateEntry(chunk.FileName, interactionId.Value, chunk.InputName);
Aspire.Hosting.Tests (1)
Backchannel\AppHostRpcTargetUploadTests.cs (1)
160var (_, replacementPath) = fileUploadStore.CreateEntry("replacement.txt", interactionId, inputName);