1 write to _client
Microsoft.NET.Build.Containers (1)
Registry\DefaultBlobUploadOperations.cs (1)
20
_client
= client;
5 references to _client
Microsoft.NET.Build.Containers (5)
Registry\DefaultBlobUploadOperations.cs (5)
31
HttpResponseMessage finalizeResponse = await
_client
.PutAsync(putUri, null, cancellationToken).ConfigureAwait(false);
45
return await
_client
.GetAsync(uploadUri.IsAbsoluteUri ? uploadUri : new Uri(_baseUri, uploadUri), cancellationToken).ConfigureAwait(false);
53
HttpResponseMessage pushResponse = await
_client
.PostAsync(startUploadUri, content: null, cancellationToken).ConfigureAwait(false);
69
HttpResponseMessage pushResponse = await
_client
.PostAsync(new Uri(_baseUri, $"/v2/{destinationRepository}/blobs/uploads/?mount={digest}&from={sourceRepository}"), content: null, cancellationToken).ConfigureAwait(false);
110
using HttpResponseMessage patchResponse = await
_client
.SendAsync(patchMessage, cancellationToken).ConfigureAwait(false);