3 implementations of LoginToRegistryAsync
Aspire.Hosting (1)
Publishing\ContainerRuntimeBase.cs (1)
325public virtual async Task LoginToRegistryAsync(string registryServer, string username, string password, CancellationToken cancellationToken)
Aspire.Hosting.Tests (1)
Publishing\ContainerRuntimeBaseTests.cs (1)
402public Task LoginToRegistryAsync(string registryServer, string username, string password, CancellationToken cancellationToken) => Task.CompletedTask;
Aspire.Hosting.TestUtilities (1)
Publishing\FakeContainerRuntime.cs (1)
106public Task LoginToRegistryAsync(string registryServer, string username, string password, CancellationToken cancellationToken)
2 references to LoginToRegistryAsync
Aspire.Hosting.Azure (1)
AcrLoginService.cs (1)
99await containerRuntime.LoginToRegistryAsync(registryEndpoint, AcrUsername, refreshToken, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Azure.Tests (1)
FakeAcrLoginService.cs (1)
37await containerRuntime.LoginToRegistryAsync(registryEndpoint, AcrUsername, "fake-refresh-token", cancellationToken);