機能
field
| Name | Type | Description |
|---|---|---|
Id | int | バッチの ID。 |
Name | string | バッチの名前。 |
BatchTypeId | int | バッチタイプの ID。0 は Default バッチタイプに対応します。 |
Priority | int | バッチの優先度。使用可能な値については、ProcessingPriority を参照してください。 |
Description | string | バッチの説明。 |
HasAttachments | bool | バッチに添付ファイルがあるかどうかを示すフラグ。 |
Properties | RegistrationProperty[] | バッチの登録パラメーターのセット。 |
PropertiesCount | int | 登録パラメーターの数。 |
StageExternalId | int | タスクが作成される処理ステージの ID。 |
CreationDate | long | バッチの作成日時を FILETIME 値として表します。値を変換するには、この表の後に示す変換例を使用してください。 |
DocumentsCount | int | バッチ内のドキュメント数。 |
RecognizedDocumentsCount | int | 認識済みドキュメント数。 |
AssembledDocumentsCount | int | 組み立て済みドキュメント数。 |
VerifiedDocumentsCount | int | 検証済みドキュメント数。 |
ExportedDocumentsCount | int | エクスポート済みドキュメント数。 |
PagesCount | int | バッチ内のページ数。 |
RecognizedSymbolsCount | int | 認識済み文字数。 |
UncertainSymbolsCount | int | 不確実な文字数。 |
VerificationSymbolsCount | int | 検証済み文字数。 |
ErrorText | string | バッチ処理中のエラーの説明。Application Server によって自動的に入力されます。 |
OwnerId | int | プロジェクトの所有者であるユーザーまたはグループの ID。 |
CreationDate を long と DateTime の間で変換する方法を次に示します。
DateTime dTime;
long lTime;
...
// long から DateTime への変換
dTime = DateTime.FromFileTime(lTime);
...
// DateTime から long への変換
lTime = dTime.ToFileTime();
