1 write to Value
Microsoft.AspNetCore.Server.IIS (1)
Windows.Win32.CHAR.g.cs (1)
29
internal CHAR(byte value) => this.
Value
= value;
7 references to Value
Microsoft.AspNetCore.Server.IIS (7)
Windows.Win32.CHAR.g.cs (7)
31
public static implicit operator byte(CHAR value) => value.
Value
;
35
public static bool operator ==(CHAR left, CHAR right) => left.
Value
== right.
Value
;
39
public bool Equals(CHAR other) => this.
Value
== other.
Value
;
43
public override int GetHashCode() => this.
Value
.GetHashCode();
45
public override string ToString() => $"0x{this.
Value
:x}";