2 instantiations of HRESULT
Microsoft.AspNetCore.Server.IIS (2)
Windows.Win32.HRESULT.g.cs (2)
37
public static explicit operator HRESULT(int value) => new
HRESULT
(value);
54
public static explicit operator HRESULT(uint value) => new
HRESULT
((int)value);
14 references to HRESULT
Microsoft.AspNetCore.Server.IIS (14)
Windows.Win32.HRESULT.g.cs (13)
29
: IEquatable<
HRESULT
>
35
public static implicit operator int(
HRESULT
value) => value.Value;
37
public static explicit operator
HRESULT
(int value) => new HRESULT(value);
39
public static bool operator ==(
HRESULT
left,
HRESULT
right) => left.Value == right.Value;
41
public static bool operator !=(
HRESULT
left,
HRESULT
right) => !(left == right);
43
public bool Equals(
HRESULT
other) => this.Value == other.Value;
45
public override bool Equals(object obj) => obj is
HRESULT
other && this.Equals(other);
52
public static implicit operator uint(
HRESULT
value) => (uint)value.Value;
54
public static explicit operator
HRESULT
(uint value) => new HRESULT((int)value);
72
/// <returns><see langword="this"/> <see cref="
HRESULT
"/>, if it does not reflect an error.</returns>
74
internal
HRESULT
ThrowOnFailure(IntPtr errorInfo = default)
Windows.Win32.HTTP_REQUEST_AUTH_INFO.g.cs (1)
37
internal winmdroot.Foundation.
HRESULT
SecStatus;