Discuss this help topic in SecureBlackbox Forum

TSBDNSSecurityStatuses

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Declaration

[C#]
    TSBDNSSecurityStatuses = int;
        const int dnsInsecure = 1;
        const int dnsIndeterminate = 2;
        const int dnsBogus = 4;
        const int dnsSecure = 8;

[VB.NET]
    TSBDNSSecurityStatuses As Integer
        Const dnsInsecure As Integer = 1
        Const dnsIndeterminate As Integer = 2
        Const dnsBogus As Integer = 4
        Const dnsSecure As Integer = 8

[Pascal]
    under development

[C++]
    typedef uint8_t TSBDNSSecurityStatusRaw;
    typedef enum { dnsInsecure = 0, dnsIndeterminate = 1, dnsBogus = 2, dnsSecure = 3 } TSBDNSSecurityStatus;
    
    typedef uint32_t TSBDNSSecurityStatusesRaw;
    typedef enum { f_dnsInsecure = 1, f_dnsIndeterminate = 2, f_dnsBogus = 4, f_dnsSecure = 8 } TSBDNSSecurityStatuses;

[PHP]
    class TSBDNSSecurityStatuses extends TSBBaseEnum {
        const dnsInsecure = 1;
        const dnsIndeterminate = 2;
        const dnsBogus = 4;
        const dnsSecure = 8;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBDNSSECTypes
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBDNSSECTypes
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbdnssectypes.h

See also:     TSBDNSSecurityStatus    

Discuss this help topic in SecureBlackbox Forum