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

HttpPipeline.CreateClientRequestIdScope(String) 方法

定义

创建一个范围,其中所有传出请求都将使用提供的

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

参数

clientRequestId
String

要随请求一起发送的客户端请求 ID 值。

返回

IDisposable不应再发送客户端请求 ID 时需要释放的实例。

示例

示例用法:

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

适用于