你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
LoadTestAdministrationClient.DeleteTestFile 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
按测试的文件名删除文件。
public virtual Azure.Response DeleteTestFile (string testId, string fileName, Azure.RequestContext context = default);
abstract member DeleteTestFile : string * string * Azure.RequestContext -> Azure.Response
override this.DeleteTestFile : string * string * Azure.RequestContext -> Azure.Response
Public Overridable Function DeleteTestFile (testId As String, fileName As String, Optional context As RequestContext = Nothing) As Response
参数
- testId
- String
负载测试的唯一名称只能包含小写字母、数字、下划线或连字符字符。
- fileName
- String
文件扩展名为 app.jmx 的文件名。
- context
- RequestContext
请求上下文,它可以基于每个调用替代客户端管道的默认行为。
返回
从服务返回的响应。
例外
testId
或 fileName
为 null。
testId
或 fileName
是空字符串,预期为非空。
服务返回了不成功状态代码。
示例
此示例演示如何使用所需参数调用 DeleteTestFile。
var credential = new DefaultAzureCredential();
var endpoint = new Uri("<https://my-service.azure.com>");
var client = new LoadTestAdministrationClient(endpoint, credential);
Response response = client.DeleteTestFile("<testId>", "<fileName>");
Console.WriteLine(response.Status);