CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
x509_verification_flags.h
1#pragma once
2
3#include <system/enum_helpers.h>
4#include <system/enum.h>
5
6namespace System { namespace Security { namespace Cryptography { namespace X509Certificates {
7
9{
10 NoFlag = 0x00000000,
11 IgnoreNotTimeValid = 0x00000001,
12 IgnoreCtlNotTimeValid = 0x00000002,
13 IgnoreNotTimeNested = 0x00000004,
16 IgnoreWrongUsage = 0x00000020,
17 IgnoreInvalidName = 0x00000040,
18 IgnoreInvalidPolicy = 0x00000080,
19 IgnoreEndRevocationUnknown = 0x00000100,
22 IgnoreRootRevocationUnknown = 0x00000800,
23 AllFlags = 0x00000FFF
24};
25
28DECLARE_USING_GLOBAL_OPERATORS
30}}}} // System::Security::Cryptography::X509Certificates
31
32DECLARE_USING_ENUM_OPERATORS(System::Security::Cryptography::X509Certificates);
33template<>
34struct EnumMetaInfo<System::Security::Cryptography::X509Certificates::X509VerificationFlags>
35{
36 typedef void Flags;
37 static const std::array<std::pair<System::Security::Cryptography::X509Certificates::X509VerificationFlags, const char_t*>, 14>& values();
38};
X509VerificationFlags
Definition: x509_verification_flags.h:9
Definition: db_command.h:9