ホーム › Storage.FileServerResourceManager › FsrmActionType
FsrmActionType
列挙型メンバー 5
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| FsrmActionType_Unknown | 0 | 0x0 | アクションの種類が不明です。アクションの種類を指定する目的でこの値を使用しないでください。 |
| FsrmActionType_EventLog | 1 | 0x1 | アプリケーション イベント ログにイベントを記録します。 |
| FsrmActionType_Email | 2 | 0x2 | 電子メール メッセージを送信します。 |
| FsrmActionType_Command | 3 | 0x3 | コマンドまたはスクリプトを実行します。 |
| FsrmActionType_Report | 4 | 0x4 | レポートを生成します。 |
公式ドキュメント
クォータまたはファイル スクリーンのイベント (クォータの超過、ファイルがファイル スクリーンに違反した場合など) に応じて実行できるアクションを定義します。ファイル管理ジョブからこのアクションをトリガーすることもできます。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum FsrmActionType : int {
FsrmActionType_Unknown = 0,
FsrmActionType_EventLog = 1,
FsrmActionType_Email = 2,
FsrmActionType_Command = 3,
FsrmActionType_Report = 4
} FsrmActionType;public enum FsrmActionType : int
{
FsrmActionType_Unknown = 0,
FsrmActionType_EventLog = 1,
FsrmActionType_Email = 2,
FsrmActionType_Command = 3,
FsrmActionType_Report = 4,
}Public Enum FsrmActionType As Integer
FsrmActionType_Unknown = 0
FsrmActionType_EventLog = 1
FsrmActionType_Email = 2
FsrmActionType_Command = 3
FsrmActionType_Report = 4
End Enumimport enum
class FsrmActionType(enum.IntEnum):
FsrmActionType_Unknown = 0
FsrmActionType_EventLog = 1
FsrmActionType_Email = 2
FsrmActionType_Command = 3
FsrmActionType_Report = 4// FsrmActionType
pub const FsrmActionType_Unknown: i32 = 0;
pub const FsrmActionType_EventLog: i32 = 1;
pub const FsrmActionType_Email: i32 = 2;
pub const FsrmActionType_Command: i32 = 3;
pub const FsrmActionType_Report: i32 = 4;// FsrmActionType
const (
FsrmActionType_Unknown int32 = 0
FsrmActionType_EventLog int32 = 1
FsrmActionType_Email int32 = 2
FsrmActionType_Command int32 = 3
FsrmActionType_Report int32 = 4
)const
FsrmActionType_Unknown = 0;
FsrmActionType_EventLog = 1;
FsrmActionType_Email = 2;
FsrmActionType_Command = 3;
FsrmActionType_Report = 4;// FsrmActionType
pub const FsrmActionType_Unknown: i32 = 0;
pub const FsrmActionType_EventLog: i32 = 1;
pub const FsrmActionType_Email: i32 = 2;
pub const FsrmActionType_Command: i32 = 3;
pub const FsrmActionType_Report: i32 = 4;const
FsrmActionType_Unknown* = 0
FsrmActionType_EventLog* = 1
FsrmActionType_Email* = 2
FsrmActionType_Command* = 3
FsrmActionType_Report* = 4enum FsrmActionType : int {
FsrmActionType_Unknown = 0,
FsrmActionType_EventLog = 1,
FsrmActionType_Email = 2,
FsrmActionType_Command = 3,
FsrmActionType_Report = 4,
}#define global FsrmActionType_Unknown 0x0
#define global FsrmActionType_EventLog 0x1
#define global FsrmActionType_Email 0x2
#define global FsrmActionType_Command 0x3
#define global FsrmActionType_Report 0x4