2 instantiations of BOOLEAN
Microsoft.AspNetCore.Server.HttpSys (2)
Windows.Win32.BOOLEAN.g.cs (2)
33
public static explicit operator BOOLEAN(byte value) => new
BOOLEAN
(value);
51
public static implicit operator BOOLEAN(bool value) => new
BOOLEAN
(value);
15 references to BOOLEAN
Microsoft.AspNetCore.Server.HttpSys (15)
Windows.Win32.BOOLEAN.g.cs (11)
25
: IEquatable<
BOOLEAN
>
31
public static implicit operator byte(
BOOLEAN
value) => value.Value;
33
public static explicit operator
BOOLEAN
(byte value) => new BOOLEAN(value);
35
public static bool operator ==(
BOOLEAN
left,
BOOLEAN
right) => left.Value == right.Value;
37
public static bool operator !=(
BOOLEAN
left,
BOOLEAN
right) => !(left == right);
39
public bool Equals(
BOOLEAN
other) => this.Value == other.Value;
41
public override bool Equals(object obj) => obj is
BOOLEAN
other && this.Equals(other);
49
public static implicit operator bool(
BOOLEAN
value) => value.Value != 0;
51
public static implicit operator
BOOLEAN
(bool value) => new BOOLEAN(value);
Windows.Win32.HTTP_SERVER_AUTHENTICATION_INFO.g.cs (3)
41
internal winmdroot.Foundation.
BOOLEAN
ReceiveMutualAuth;
44
internal winmdroot.Foundation.
BOOLEAN
ReceiveContextHandle;
50
internal winmdroot.Foundation.
BOOLEAN
DisableNTLMCredentialCaching;
Windows.Win32.HTTP_SSL_CLIENT_CERT_INFO.g.cs (1)
49
internal winmdroot.Foundation.
BOOLEAN
CertDeniedByMapper;