5 instantiations of PCSTR
Microsoft.AspNetCore.Shared.Tests (5)
Windows.Win32.PCSTR.g.cs (1)
39
public static explicit operator PCSTR(byte* value) => new
PCSTR
(value);
Windows.Win32.PInvoke.HTTPAPI.dll.g.cs (1)
1496
uint __result = PInvoke.HttpDeclarePush(RequestQueueHandleLocal, RequestId, Verb, PathLocal, new winmdroot.Foundation.
PCSTR
(QueryLocal), Headers.HasValue ? &HeadersLocal : null);
Windows.Win32.PSTR.g.cs (3)
51
public override string ToString() => new
PCSTR
(this.Value).ToString();
53
public static implicit operator PCSTR(PSTR value) => new
PCSTR
(value.Value);
57
internal int Length => new
PCSTR
(this.Value).Length;
18 references to PCSTR
Microsoft.AspNetCore.Shared.Tests (18)
Windows.Win32.HTTP_KNOWN_HEADER.g.cs (1)
37
internal winmdroot.Foundation.
PCSTR
pRawValue;
Windows.Win32.HTTP_REQUEST_V1.g.cs (2)
71
internal winmdroot.Foundation.
PCSTR
pUnknownVerb;
74
internal winmdroot.Foundation.
PCSTR
pRawUrl;
Windows.Win32.HTTP_RESPONSE_V1.g.cs (1)
45
internal winmdroot.Foundation.
PCSTR
pReason;
Windows.Win32.HTTP_SSL_INFO.g.cs (2)
43
internal winmdroot.Foundation.
PCSTR
pServerCertIssuer;
46
internal winmdroot.Foundation.
PCSTR
pServerCertSubject;
Windows.Win32.HTTP_UNKNOWN_HEADER.g.cs (2)
36
internal winmdroot.Foundation.
PCSTR
pName;
39
internal winmdroot.Foundation.
PCSTR
pRawValue;
Windows.Win32.PCSTR.g.cs (5)
28
: IEquatable<
PCSTR
>
37
public static implicit operator byte*(
PCSTR
value) => value.Value;
39
public static explicit operator
PCSTR
(byte* value) => new PCSTR(value);
41
public bool Equals(
PCSTR
other) => this.Value == other.Value;
43
public override bool Equals(object obj) => obj is
PCSTR
other && this.Equals(other);
Windows.Win32.PInvoke.HTTPAPI.dll.g.cs (2)
1475
/// <inheritdoc cref="HttpDeclarePush(winmdroot.Foundation.HANDLE, ulong, winmdroot.Networking.HttpServer.HTTP_VERB, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.
PCSTR
, winmdroot.Networking.HttpServer.HTTP_REQUEST_HEADERS*)"/>
1527
internal static extern unsafe uint HttpDeclarePush(winmdroot.Foundation.HANDLE RequestQueueHandle, ulong RequestId, winmdroot.Networking.HttpServer.HTTP_VERB Verb, winmdroot.Foundation.PCWSTR Path, [Optional] winmdroot.Foundation.
PCSTR
Query, [Optional] winmdroot.Networking.HttpServer.HTTP_REQUEST_HEADERS* Headers);
Windows.Win32.PSTR.g.cs (3)
50
/// <inheritdoc cref="
PCSTR
.ToString()"/>
53
public static implicit operator
PCSTR
(PSTR value) => new PCSTR(value.Value);
56
/// <inheritdoc cref="
PCSTR
.Length"/>