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