2 instantiations of BOOLEAN
System.Windows.Forms.Primitives (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);
20 references to BOOLEAN
System.Windows.Forms.Primitives (20)
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.PInvoke.POWRPROF.dll.g.cs (9)
44
internal static winmdroot.Foundation.
BOOLEAN
SetSuspendState(winmdroot.Foundation.
BOOLEAN
bHibernate, winmdroot.Foundation.
BOOLEAN
bForce, winmdroot.Foundation.
BOOLEAN
bWakeupEventsDisabled)
47
winmdroot.Foundation.
BOOLEAN
__retVal = LocalExternFunction(bHibernate, bForce, bWakeupEventsDisabled);
52
static extern winmdroot.Foundation.
BOOLEAN
LocalExternFunction(winmdroot.Foundation.
BOOLEAN
bHibernate, winmdroot.Foundation.
BOOLEAN
bForce, winmdroot.Foundation.
BOOLEAN
bWakeupEventsDisabled);