你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
TillageData.Delete(String, String, RequestContext) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
删除特定参与方下的指定耕种数据资源。
public virtual Azure.Response Delete (string partyId, string tillageDataId, Azure.RequestContext context = default);
abstract member Delete : string * string * Azure.RequestContext -> Azure.Response
override this.Delete : string * string * Azure.RequestContext -> Azure.Response
Public Overridable Function Delete (partyId As String, tillageDataId As String, Optional context As RequestContext = Nothing) As Response
参数
- partyId
- String
关联方资源的 ID。
- tillageDataId
- String
耕种数据的 ID。
- context
- RequestContext
请求上下文,可以基于每个调用替代客户端管道的默认行为。
返回
从服务返回的响应。
例外
partyId
或 tillageDataId
为 null。
partyId
或 tillageDataId
是空字符串,预期为非空。
服务返回了非成功状态代码。
示例
此示例演示如何使用所需参数调用 Delete。
var credential = new DefaultAzureCredential();
var client = new FarmBeatsClient(credential).GetTillageDataClient(<2022-11-01-preview>);
Response response = client.Delete("<partyId>", "<tillageDataId>");
Console.WriteLine(response.Status);