次の方法で共有


IndexerExecutionInfo コンストラクター

定義

オーバーロード

IndexerExecutionInfo()

IndexerExecutionInfo クラスの新しいインスタンスを初期化します。

IndexerExecutionInfo(IndexerStatus, IndexerExecutionResult, IList<IndexerExecutionResult>, IndexerLimits)

IndexerExecutionInfo クラスの新しいインスタンスを初期化します。

IndexerExecutionInfo()

ソース:
IndexerExecutionInfo.cs

IndexerExecutionInfo クラスの新しいインスタンスを初期化します。

public IndexerExecutionInfo ();
Public Sub New ()

適用対象

IndexerExecutionInfo(IndexerStatus, IndexerExecutionResult, IList<IndexerExecutionResult>, IndexerLimits)

ソース:
IndexerExecutionInfo.cs

IndexerExecutionInfo クラスの新しいインスタンスを初期化します。

public IndexerExecutionInfo (Microsoft.Azure.Search.Models.IndexerStatus status = Microsoft.Azure.Search.Models.IndexerStatus.Unknown, Microsoft.Azure.Search.Models.IndexerExecutionResult lastResult = default, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.IndexerExecutionResult> executionHistory = default, Microsoft.Azure.Search.Models.IndexerLimits limits = default);
new Microsoft.Azure.Search.Models.IndexerExecutionInfo : Microsoft.Azure.Search.Models.IndexerStatus * Microsoft.Azure.Search.Models.IndexerExecutionResult * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.IndexerExecutionResult> * Microsoft.Azure.Search.Models.IndexerLimits -> Microsoft.Azure.Search.Models.IndexerExecutionInfo
Public Sub New (Optional status As IndexerStatus = Microsoft.Azure.Search.Models.IndexerStatus.Unknown, Optional lastResult As IndexerExecutionResult = Nothing, Optional executionHistory As IList(Of IndexerExecutionResult) = Nothing, Optional limits As IndexerLimits = Nothing)

パラメーター

status
IndexerStatus

全体的なインデクサーの状態。 使用可能な値は、'unknown'、'error'、'running' です。

lastResult
IndexerExecutionResult

最新または進行中のインデクサー実行の結果。

executionHistory
IList<IndexerExecutionResult>

最近のインデクサー実行の履歴。逆の時系列順に並べ替えられます。

limits
IndexerLimits

インデクサーの実行制限。

適用対象