2 instantiations of BOOL
Microsoft.AspNetCore.Server.IIS (2)
Windows.Win32.BOOL.g.cs (2)
33
public static explicit operator BOOL(int value) => new
BOOL
(value);
51
public static implicit operator BOOL(bool value) => new
BOOL
(value);
12 references to BOOL
Microsoft.AspNetCore.Server.IIS (12)
Windows.Win32.BOOL.g.cs (11)
25
: IEquatable<
BOOL
>
31
public static implicit operator int(
BOOL
value) => value.Value;
33
public static explicit operator
BOOL
(int value) => new BOOL(value);
35
public static bool operator ==(
BOOL
left,
BOOL
right) => left.Value == right.Value;
37
public static bool operator !=(
BOOL
left,
BOOL
right) => !(left == right);
39
public bool Equals(
BOOL
other) => this.Value == other.Value;
41
public override bool Equals(object obj) => obj is
BOOL
other && this.Equals(other);
49
public static implicit operator bool(
BOOL
value) => value.Value != 0;
51
public static implicit operator
BOOL
(bool value) => new BOOL(value);
Windows.Win32.PInvoke.KERNEL32.dll.g.cs (1)
40
internal static extern winmdroot.Foundation.
BOOL
CloseHandle(winmdroot.Foundation.HANDLE hObject);