1 instantiation of PSTR
Microsoft.AspNetCore.Server.HttpSys (1)
Windows.Win32.PSTR.g.cs (1)
33
public static implicit operator PSTR(byte* value) => new
PSTR
(value);
11 references to PSTR
Microsoft.AspNetCore.Server.HttpSys (11)
Windows.Win32.HTTP_REQUEST_AUTH_INFO.g.cs (1)
74
internal winmdroot.Foundation.
PSTR
pMutualAuthData;
Windows.Win32.PSTR.g.cs (10)
25
: IEquatable<
PSTR
>
31
public static implicit operator byte*(
PSTR
value) => value.Value;
33
public static implicit operator
PSTR
(byte* value) => new PSTR(value);
35
public static bool operator ==(
PSTR
left,
PSTR
right) => left.Value == right.Value;
37
public static bool operator !=(
PSTR
left,
PSTR
right) => !(left == right);
39
public bool Equals(
PSTR
other) => this.Value == other.Value;
41
public override bool Equals(object obj) => obj is
PSTR
other && this.Equals(other);
49
public static implicit operator PCSTR(
PSTR
value) => new PCSTR(value.Value);