Win32 API 日本語リファレンス
ホームSecurity.Cryptography.Certificates › InstallResponseRestrictionFlags

InstallResponseRestrictionFlags

列挙型
基底型i4

メンバー 4

名前10進16進
AllowNone00x0
AllowNoOutstandingRequest10x1
AllowUntrustedCertificate20x2
AllowUntrustedRoot40x4

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum InstallResponseRestrictionFlags : int {
    AllowNone = 0,
    AllowNoOutstandingRequest = 1,
    AllowUntrustedCertificate = 2,
    AllowUntrustedRoot = 4
} InstallResponseRestrictionFlags;
public enum InstallResponseRestrictionFlags : int
{
    AllowNone = 0,
    AllowNoOutstandingRequest = 1,
    AllowUntrustedCertificate = 2,
    AllowUntrustedRoot = 4,
}
Public Enum InstallResponseRestrictionFlags As Integer
    AllowNone = 0
    AllowNoOutstandingRequest = 1
    AllowUntrustedCertificate = 2
    AllowUntrustedRoot = 4
End Enum
import enum

class InstallResponseRestrictionFlags(enum.IntEnum):
    AllowNone = 0
    AllowNoOutstandingRequest = 1
    AllowUntrustedCertificate = 2
    AllowUntrustedRoot = 4
// InstallResponseRestrictionFlags
pub const AllowNone: i32 = 0;
pub const AllowNoOutstandingRequest: i32 = 1;
pub const AllowUntrustedCertificate: i32 = 2;
pub const AllowUntrustedRoot: i32 = 4;
// InstallResponseRestrictionFlags
const (
	AllowNone int32 = 0
	AllowNoOutstandingRequest int32 = 1
	AllowUntrustedCertificate int32 = 2
	AllowUntrustedRoot int32 = 4
)
const
  AllowNone = 0;
  AllowNoOutstandingRequest = 1;
  AllowUntrustedCertificate = 2;
  AllowUntrustedRoot = 4;
// InstallResponseRestrictionFlags
pub const AllowNone: i32 = 0;
pub const AllowNoOutstandingRequest: i32 = 1;
pub const AllowUntrustedCertificate: i32 = 2;
pub const AllowUntrustedRoot: i32 = 4;
const
  AllowNone* = 0
  AllowNoOutstandingRequest* = 1
  AllowUntrustedCertificate* = 2
  AllowUntrustedRoot* = 4
enum InstallResponseRestrictionFlags : int {
    AllowNone = 0,
    AllowNoOutstandingRequest = 1,
    AllowUntrustedCertificate = 2,
    AllowUntrustedRoot = 4,
}
#define global AllowNone                 0x0
#define global AllowNoOutstandingRequest 0x1
#define global AllowUntrustedCertificate 0x2
#define global AllowUntrustedRoot        0x4