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

Boundaries.GetOverlapAsync 方法

定义

返回两个边界 ID 之间的重叠区域。

public virtual System.Threading.Tasks.Task<Azure.Response> GetOverlapAsync (string partyId, string boundaryId, string otherPartyId, string otherBoundaryId, Azure.RequestContext context = default);
abstract member GetOverlapAsync : string * string * string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
override this.GetOverlapAsync : string * string * string * string * Azure.RequestContext -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function GetOverlapAsync (partyId As String, boundaryId As String, otherPartyId As String, otherBoundaryId As String, Optional context As RequestContext = Nothing) As Task(Of Response)

参数

partyId
String

群的 ID。

boundaryId
String

边界的 ID。

otherPartyId
String

另一个字段的 PartyId。

otherBoundaryId
String

另一个边界的 ID。

context
RequestContext

请求上下文,可以基于每个调用替代客户端管道的默认行为。

返回

从服务返回的响应。 响应正文架构的详细信息,请参阅下面的“备注”部分。

例外

partyIdboundaryIdotherPartyIdotherBoundaryId 为 null。

partyIdboundaryId 是空字符串,预期为非空。

服务返回了非成功状态代码。

示例

此示例演示如何使用所需的参数调用 GetOverlapAsync 并分析结果。

var credential = new DefaultAzureCredential();
var client = new FarmBeatsClient(credential).GetBoundariesClient(<2022-11-01-preview>);

Response response = await client.GetOverlapAsync("<partyId>", "<boundaryId>", "<otherPartyId>", "<otherBoundaryId>");

JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement;
Console.WriteLine(result.GetProperty("boundaryArea").ToString());
Console.WriteLine(result.GetProperty("otherBoundaryArea").ToString());
Console.WriteLine(result.GetProperty("intersectingArea").ToString());

注解

下面是响应有效负载的 JSON 架构。

响应正文:

BoundaryOverlapResponse架构:

{
  boundaryArea: number, # Optional. Acreage of Main boundary.
  otherBoundaryArea: number, # Optional. Acreage of other boundary.
  intersectingArea: number, # Optional. Acreage of intersecting boundary.
}

适用于