ホーム › Security.Cryptography.Certificates › PFXExportOptions
PFXExportOptions
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| PFXExportEEOnly | 0 | 0x0 |
| PFXExportChainNoRoot | 1 | 0x1 |
| PFXExportChainWithRoot | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum PFXExportOptions : int {
PFXExportEEOnly = 0,
PFXExportChainNoRoot = 1,
PFXExportChainWithRoot = 2
} PFXExportOptions;public enum PFXExportOptions : int
{
PFXExportEEOnly = 0,
PFXExportChainNoRoot = 1,
PFXExportChainWithRoot = 2,
}Public Enum PFXExportOptions As Integer
PFXExportEEOnly = 0
PFXExportChainNoRoot = 1
PFXExportChainWithRoot = 2
End Enumimport enum
class PFXExportOptions(enum.IntEnum):
PFXExportEEOnly = 0
PFXExportChainNoRoot = 1
PFXExportChainWithRoot = 2// PFXExportOptions
pub const PFXExportEEOnly: i32 = 0;
pub const PFXExportChainNoRoot: i32 = 1;
pub const PFXExportChainWithRoot: i32 = 2;// PFXExportOptions
const (
PFXExportEEOnly int32 = 0
PFXExportChainNoRoot int32 = 1
PFXExportChainWithRoot int32 = 2
)const
PFXExportEEOnly = 0;
PFXExportChainNoRoot = 1;
PFXExportChainWithRoot = 2;// PFXExportOptions
pub const PFXExportEEOnly: i32 = 0;
pub const PFXExportChainNoRoot: i32 = 1;
pub const PFXExportChainWithRoot: i32 = 2;const
PFXExportEEOnly* = 0
PFXExportChainNoRoot* = 1
PFXExportChainWithRoot* = 2enum PFXExportOptions : int {
PFXExportEEOnly = 0,
PFXExportChainNoRoot = 1,
PFXExportChainWithRoot = 2,
}#define global PFXExportEEOnly 0x0
#define global PFXExportChainNoRoot 0x1
#define global PFXExportChainWithRoot 0x2