你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

HttpPipeline.CreateClientRequestIdScope(String) Method

Definition

Creates a scope in which all outgoing requests would use the provided

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

Parameters

clientRequestId
String

The client request id value to be sent with request.

Returns

The IDisposable instance that needs to be disposed when client request id shouldn't be sent anymore.

Examples

Sample usage:

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>");
}

Applies to