ホーム › System.Rpc › RpcCallType
RpcCallType
列挙型メンバー 4
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| rctInvalid | 0 | 0x0 | リモートプロシージャ呼び出しが無効です。 |
| rctNormal | 1 | 0x1 | リモートプロシージャ呼び出しには特別な特性はありません。 |
| rctTraining | 2 | 0x2 | リモートプロシージャ呼び出しは「トレーニング」RPC に使用されます。 |
| rctGuaranteed | 3 | 0x3 | リモートプロシージャ呼び出しは実行が保証されています。 |
公式ドキュメント
RpcCallType 列挙型は、RPC 呼び出しの種類のセットを指定します。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 RpcCallType : int {
rctInvalid = 0,
rctNormal = 1,
rctTraining = 2,
rctGuaranteed = 3
} RpcCallType;public enum RpcCallType : int
{
rctInvalid = 0,
rctNormal = 1,
rctTraining = 2,
rctGuaranteed = 3,
}Public Enum RpcCallType As Integer
rctInvalid = 0
rctNormal = 1
rctTraining = 2
rctGuaranteed = 3
End Enumimport enum
class RpcCallType(enum.IntEnum):
rctInvalid = 0
rctNormal = 1
rctTraining = 2
rctGuaranteed = 3// RpcCallType
pub const rctInvalid: i32 = 0;
pub const rctNormal: i32 = 1;
pub const rctTraining: i32 = 2;
pub const rctGuaranteed: i32 = 3;// RpcCallType
const (
rctInvalid int32 = 0
rctNormal int32 = 1
rctTraining int32 = 2
rctGuaranteed int32 = 3
)const
rctInvalid = 0;
rctNormal = 1;
rctTraining = 2;
rctGuaranteed = 3;// RpcCallType
pub const rctInvalid: i32 = 0;
pub const rctNormal: i32 = 1;
pub const rctTraining: i32 = 2;
pub const rctGuaranteed: i32 = 3;const
rctInvalid* = 0
rctNormal* = 1
rctTraining* = 2
rctGuaranteed* = 3enum RpcCallType : int {
rctInvalid = 0,
rctNormal = 1,
rctTraining = 2,
rctGuaranteed = 3,
}#define global rctInvalid 0x0
#define global rctNormal 0x1
#define global rctTraining 0x2
#define global rctGuaranteed 0x3