次の方法で共有


IQueryOperations.ExecuteWithHttpMessagesAsync メソッド

定義

分析クエリを実行する

public System.Threading.Tasks.Task<Microsoft.Rest.HttpOperationResponse<Microsoft.Azure.ApplicationInsights.Query.Models.QueryResults>> ExecuteWithHttpMessagesAsync (string appId, string query, string timespan = default, System.Collections.Generic.IList<string> applications = default, System.Collections.Generic.Dictionary<string,System.Collections.Generic.List<string>> customHeaders = default, System.Threading.CancellationToken cancellationToken = default);
abstract member ExecuteWithHttpMessagesAsync : string * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.HttpOperationResponse<Microsoft.Azure.ApplicationInsights.Query.Models.QueryResults>>
Public Function ExecuteWithHttpMessagesAsync (appId As String, query As String, Optional timespan As String = Nothing, Optional applications As IList(Of String) = Nothing, Optional customHeaders As Dictionary(Of String, List(Of String)) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of HttpOperationResponse(Of QueryResults))

パラメーター

appId
String

アプリケーションの ID。 これは、Azure portalの [API アクセス設定] ブレードの [アプリケーション ID] です。

query
String

実行するクエリ。

timespan
String

任意。 データのクエリを実行する期間。 これは ISO8601 期間の値です。 この期間は、クエリ式で指定されているに加えて適用されます。

applications
IList<String>

アプリケーション間クエリのアプリケーション ID の一覧。

customHeaders
Dictionary<String,List<String>>

要求に追加されるヘッダー。

cancellationToken
CancellationToken

キャンセル トークン。

戻り値

例外

操作が無効な状態コードを返したときにスローされます

応答を逆シリアル化できない場合にスローされます

必須パラメーターが null の場合にスローされます

注釈

データに対して Analytics クエリを実行します。

こちら

は、分析クエリで POST を使用する例です。

適用対象