Boundaries.GetOverlap(String, String, String, String, RequestContext) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Retorna a área sobreposta entre duas IDs de limite.
public virtual Azure.Response GetOverlap (string partyId, string boundaryId, string otherPartyId, string otherBoundaryId, Azure.RequestContext context = default);
abstract member GetOverlap : string * string * string * string * Azure.RequestContext -> Azure.Response
override this.GetOverlap : string * string * string * string * Azure.RequestContext -> Azure.Response
Public Overridable Function GetOverlap (partyId As String, boundaryId As String, otherPartyId As String, otherBoundaryId As String, Optional context As RequestContext = Nothing) As Response
Parâmetros
- partyId
- String
ID da festa.
- boundaryId
- String
ID do limite.
- otherPartyId
- String
PartyId do outro campo.
- otherBoundaryId
- String
ID do outro limite.
- context
- RequestContext
O contexto de solicitação, que pode substituir os comportamentos padrão do pipeline do cliente por chamada.
Retornos
A resposta retornada do serviço. Os detalhes do esquema do corpo da resposta estão na seção Comentários abaixo.
Exceções
partyId
, boundaryId
, otherPartyId
ou otherBoundaryId
é nulo.
partyId
ou boundaryId
é uma cadeia de caracteres vazia e esperava-se que não estivesse vazia.
O serviço retornou um código de status sem êxito.
Exemplos
Este exemplo mostra como chamar GetOverlap com os parâmetros necessários e analisar o resultado.
var credential = new DefaultAzureCredential();
var client = new FarmBeatsClient(credential).GetBoundariesClient(<2022-11-01-preview>);
Response response = client.GetOverlap("<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());
Comentários
Abaixo está o esquema JSON para o conteúdo de resposta.
Corpo da resposta:
Esquema para BoundaryOverlapResponse
:
{
boundaryArea: number, # Optional. Acreage of Main boundary.
otherBoundaryArea: number, # Optional. Acreage of other boundary.
intersectingArea: number, # Optional. Acreage of intersecting boundary.
}
Aplica-se a
Azure SDK for .NET