2 instantiations of BOOL
Microsoft.AspNetCore.Server.HttpSys (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);
17 references to BOOL
Microsoft.AspNetCore.Server.HttpSys (17)
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.HTTPAPI.dll.g.cs (1)
409 internal static extern winmdroot.Foundation.BOOL HttpIsFeatureSupported(winmdroot.Networking.HttpServer.HTTP_FEATURE_ID FeatureId);
Windows.Win32.PInvoke.KERNEL32.dll.g.cs (4)
40 internal static extern winmdroot.Foundation.BOOL CloseHandle(winmdroot.Foundation.HANDLE hObject); 44 internal static unsafe winmdroot.Foundation.BOOL SetFileCompletionNotificationModes(SafeHandle FileHandle, byte Flags) 57 winmdroot.Foundation.BOOL __result = PInvoke.SetFileCompletionNotificationModes(FileHandleLocal, Flags); 85 internal static extern winmdroot.Foundation.BOOL SetFileCompletionNotificationModes(winmdroot.Foundation.HANDLE FileHandle, byte Flags);
Windows.Win32.SECURITY_ATTRIBUTES.g.cs (1)
37 internal winmdroot.Foundation.BOOL bInheritHandle;