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