Compartir a través de


HttpPipeline.CreateClientRequestIdScope(String) Método

Definición

Crea un ámbito en el que todas las solicitudes salientes usarían el proporcionado.

public static IDisposable CreateClientRequestIdScope (string? clientRequestId);
static member CreateClientRequestIdScope : string -> IDisposable
Public Shared Function CreateClientRequestIdScope (clientRequestId As String) As IDisposable

Parámetros

clientRequestId
String

Valor del identificador de solicitud de cliente que se enviará con la solicitud.

Devoluciones

La IDisposable instancia que debe eliminarse cuando el identificador de solicitud de cliente ya no se debe enviar.

Ejemplos

Ejemplo de uso:

var secretClient = new SecretClient(new Uri("http://example.com"), new DefaultAzureCredential());

using (HttpPipeline.CreateClientRequestIdScope("<custom-client-request-id>"))
{
    // The HTTP request resulting from the client call would have x-ms-client-request-id value set to <custom-client-request-id>
    secretClient.GetSecret("<secret-name>");
}

Se aplica a