5 instantiations of PCSTR
Microsoft.AspNetCore.Shared.Tests (5)
Windows.Win32.PCSTR.g.cs (1)
38 public static explicit operator PCSTR(byte* value) => new PCSTR(value);
Windows.Win32.PInvoke.HTTPAPI.dll.g.cs (1)
1149 uint __result = PInvoke.HttpDeclarePush(RequestQueueHandleLocal, RequestId, Verb, PathLocal, new winmdroot.Foundation.PCSTR (QueryLocal), Headers.HasValue ? &HeadersLocal : null);
Windows.Win32.PSTR.g.cs (3)
47 public override string ToString() => new PCSTR(this.Value).ToString(); 49 public static implicit operator PCSTR(PSTR value) => new PCSTR(value.Value); 53 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)
27 : IEquatable<PCSTR> 36 public static implicit operator byte*(PCSTR value) => value.Value; 38 public static explicit operator PCSTR(byte* value) => new PCSTR(value); 40 public bool Equals(PCSTR other) => this.Value == other.Value; 42 public override bool Equals(object obj) => obj is PCSTR other && this.Equals(other);
Windows.Win32.PInvoke.HTTPAPI.dll.g.cs (2)
1129 /// <inheritdoc cref="HttpDeclarePush(winmdroot.Foundation.HANDLE, ulong, winmdroot.Networking.HttpServer.HTTP_VERB, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.PCSTR, winmdroot.Networking.HttpServer.HTTP_REQUEST_HEADERS*)"/> 1181 internal static extern unsafe uint HttpDeclarePush(winmdroot.Foundation.HANDLE RequestQueueHandle, ulong RequestId, winmdroot.Networking.HttpServer.HTTP_VERB Verb, winmdroot.Foundation.PCWSTR Path, winmdroot.Foundation.PCSTR Query, [Optional] winmdroot.Networking.HttpServer.HTTP_REQUEST_HEADERS* Headers);
Windows.Win32.PSTR.g.cs (3)
46/// <inheritdoc cref="PCSTR.ToString()"/> 49 public static implicit operator PCSTR(PSTR value) => new PCSTR(value.Value); 52/// <inheritdoc cref="PCSTR.Length"/>