46 references to Resource
Microsoft.NET.Build.Containers (46)
AmazonECRMessageHandler.cs (1)
28string message = Resource.GetString(nameof(Strings.AmazonRegistryFailed));
AuthHandshakeMessageHandler.cs (9)
153public string ResolvedToken => token ?? access_token ?? throw new ArgumentException(Resource.GetString(nameof(Strings.InvalidTokenResponse))); 239Resource.FormatString(nameof(Strings.InvalidAuthResponse_RelativeOrUnparseableRealm), realm)); 254Resource.FormatString(nameof(Strings.InvalidAuthResponse_DisallowedScheme), realm, realmUri.Scheme)); 272Resource.FormatString(nameof(Strings.InvalidAuthResponse_PrivateIpLiteralRealm), realm, realmHost)); 284Resource.FormatString(nameof(Strings.InvalidAuthResponse_PrivateIpLiteralRealm), realm, realmHost)); 503_logger.LogTrace(Resource.GetString(nameof(Strings.CouldntDeserializeJsonToken))); 542throw new ArgumentException(Resource.GetString(nameof(Strings.CouldntDeserializeJsonToken))); 576throw new ArgumentException(Resource.GetString(nameof(Strings.NoRequestUriSpecified)), nameof(request)); 631throw new ApplicationException(Resource.GetString(nameof(Strings.TooManyRetries)), new AggregateException(requestExceptions!));
ContentStore.cs (1)
37_ => throw new ArgumentException(Resource.FormatString(nameof(Strings.UnrecognizedMediaType), descriptor.MediaType))
Credentials\CredentialRetrievalException.cs (1)
12Resource.FormatString(nameof(Strings.FailedRetrievingCredentials), registry, innerException.Message),
Exceptions\InvalidAuthResponseException.cs (1)
15: base(Resource.FormatString(nameof(Strings.InvalidRegistryAuthResponse), registry, reason), innerException)
FallbackToHttpMessageHandler.cs (1)
34throw new ArgumentException(Resource.GetString(nameof(Strings.NoRequestUriSpecified)), nameof(request));
ImageBuilder.cs (1)
246Resource.FormatString(
Layer.cs (1)
207_ => throw new ArgumentException(Resource.FormatString(nameof(Strings.UnrecognizedMediaType), manifestMediaType))
LocalDaemons\ContainerArchive.cs (2)
49throw new NotSupportedException(Resource.FormatString(nameof(Strings.UnsupportedMediaTypeForTarball), image.ManifestMediaType)); 123throw new NotImplementedException(Resource.FormatString(
LocalDaemons\ContainerRuntime.cs (1)
213=> new(Resource.FormatString(Strings.ContainerRuntimeProcessCreationFailed, GetCommandsForCurrentPlatform()));
LocalDaemons\ContainerRuntimeOperations.cs (2)
81throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), output.StandardError)); 118throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), stderr));
LocalDaemons\ContainerRuntimes.cs (3)
154throw new DockerLoadException(Resource.FormatString( 165throw new DockerLoadException(Resource.FormatString(nameof(Strings.DockerInfoFailed_Ex), e.Message)); 316throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), stderr));
LocalDaemons\DockerCli.cs (7)
79throw new NotImplementedException(Resource.FormatString(Strings.ContainerRuntimeProcessCreationFailed, Commands)); 113throw new NotImplementedException(Resource.FormatString(Strings.ContainerRuntimeProcessCreationFailed, commandPath)); 129throw new DockerLoadException(Resource.FormatString(nameof(Strings.ImageLoadFailed), await loadProcess.StandardError.ReadToEndAsync(cancellationToken).ConfigureAwait(false))); 217throw new DockerLoadException(Resource.FormatString( 228throw new DockerLoadException(Resource.FormatString(nameof(Strings.DockerInfoFailed_Ex), e.Message)); 300throw new ArgumentException(Resource.FormatString(nameof(Strings.UnsupportedMediaTypeForTarball), image.ManifestMediaType)); 353throw new NotImplementedException(Resource.FormatString(
LocalDaemons\KnownLocalRegistryTypes.cs (1)
45Resource.FormatString(
Registry\DefaultBlobOperations.cs (1)
78throw new ContainerHttpException(Resource.GetString(nameof(Strings.RegistryPullFailed)), response.RequestMessage?.RequestUri?.ToString(), response.StatusCode);
Registry\DefaultBlobUploadOperations.cs (3)
38string errorMessage = Resource.FormatString(nameof(Strings.BlobUploadFailed), $"PUT {putUri}", finalizeResponse.StatusCode); 58string errorMessage = Resource.FormatString(nameof(Strings.BlobUploadFailed), $"POST {startUploadUri}", pushResponse.StatusCode); 118string errorMessage = Resource.FormatString(nameof(Strings.BlobUploadFailed), $"PATCH {uploadUri}", patchResponse.StatusCode);
Registry\DefaultManifestOperations.cs (2)
51throw new ContainerHttpException(Resource.FormatString(nameof(Strings.RegistryPushFailed), putResponse.StatusCode), putResponse.RequestMessage?.RequestUri?.ToString(), putResponse.StatusCode); 58throw new ContainerHttpException(Resource.GetString(nameof(Strings.RegistryPullFailed)), response.RequestMessage?.RequestUri?.ToString(), response.StatusCode);
Registry\Registry.cs (2)
218var unknownMediaType => throw new NotImplementedException(Resource.FormatString( 632throw new NotImplementedException(Resource.GetString(nameof(Strings.MissingLinkToRegistry)));
Resources\Resource.cs (1)
24internal static readonly ResourceManager Manager = new(typeof(Strings).FullName!, typeof(Resource).GetTypeInfo().Assembly);
Tasks\CreateImageIndex.Interface.cs (1)
96TaskResources = Resource.Manager;
Tasks\CreateNewImage.cs (2)
63Log.LogMessage(MessageImportance.Low, Resource.GetString(nameof(Strings.HostObjectNotDetected))); 136throw new NotSupportedException(Resource.GetString(nameof(Strings.ImagePullNotSupported)));
Tasks\CreateNewImage.Interface.cs (1)
227TaskResources = Resource.Manager;
Tasks\ParseContainerProperties.cs (1)
83TaskResources = Resource.Manager;