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

FileUploadResultOperation Constructors

Definition

Overloads

FileUploadResultOperation()

Initializes a new instance of the FileUploadResultOperation class. This constructor is intended to be used for mocking only.

FileUploadResultOperation(String, String, LoadTestAdministrationClient, Response)

Initializes a new instance of the FileUploadResultOperation class which tracks the status of a long-running operation for uploading a file to a test.

FileUploadResultOperation()

Source:
FileUploadResultOperation.cs
Source:
FileUploadResultOperation.cs

Initializes a new instance of the FileUploadResultOperation class. This constructor is intended to be used for mocking only.

protected FileUploadResultOperation();
Protected Sub New ()

Applies to

FileUploadResultOperation(String, String, LoadTestAdministrationClient, Response)

Source:
FileUploadResultOperation.cs
Source:
FileUploadResultOperation.cs

Initializes a new instance of the FileUploadResultOperation class which tracks the status of a long-running operation for uploading a file to a test.

public FileUploadResultOperation(string testId, string fileName, Azure.Developer.LoadTesting.LoadTestAdministrationClient client, Azure.Response initialResponse = default);
new Azure.Developer.LoadTesting.FileUploadResultOperation : string * string * Azure.Developer.LoadTesting.LoadTestAdministrationClient * Azure.Response -> Azure.Developer.LoadTesting.FileUploadResultOperation
Public Sub New (testId As String, fileName As String, client As LoadTestAdministrationClient, Optional initialResponse As Response = Nothing)

Parameters

testId
String

The ID of the test.

fileName
String

The name of the file uploaded.

client
LoadTestAdministrationClient

An instance of the Load Test Administration Client.

initialResponse
Response

The initial response from the server.

Applies to