1 instantiation of PWSTR
Microsoft.AspNetCore.Shared.Tests (1)
Windows.Win32.PWSTR.g.cs (1)
33
public static implicit operator PWSTR(char* value) => new
PWSTR
(value);
27 references to PWSTR
Microsoft.AspNetCore.Shared.Tests (27)
Windows.Win32.HTTP_LOG_FIELDS_DATA.g.cs (2)
70
internal winmdroot.Foundation.
PWSTR
UserName;
73
internal winmdroot.Foundation.
PWSTR
UriStem;
Windows.Win32.HTTP_REQUEST_AUTH_INFO.g.cs (1)
80
internal winmdroot.Foundation.
PWSTR
pPackageName;
Windows.Win32.HTTP_SERVER_AUTHENTICATION_BASIC_PARAMS.g.cs (1)
36
internal winmdroot.Foundation.
PWSTR
Realm;
Windows.Win32.HTTP_SERVER_AUTHENTICATION_DIGEST_PARAMS.g.cs (2)
36
internal winmdroot.Foundation.
PWSTR
DomainName;
45
internal winmdroot.Foundation.
PWSTR
Realm;
Windows.Win32.HTTP_SERVICE_BINDING_W.g.cs (1)
33
internal winmdroot.Foundation.
PWSTR
Buffer;
Windows.Win32.HTTP_SERVICE_CONFIG_SSL_PARAM.g.cs (3)
40
internal winmdroot.Foundation.
PWSTR
pSslCertStoreName;
52
internal winmdroot.Foundation.
PWSTR
pDefaultSslCtlIdentifier;
55
internal winmdroot.Foundation.
PWSTR
pDefaultSslCtlStoreName;
Windows.Win32.HTTP_SERVICE_CONFIG_SSL_SNI_KEY.g.cs (1)
33
internal winmdroot.Foundation.
PWSTR
Host;
Windows.Win32.HTTP_SERVICE_CONFIG_URLACL_KEY.g.cs (1)
33
internal winmdroot.Foundation.
PWSTR
pUrlPrefix;
Windows.Win32.HTTP_SERVICE_CONFIG_URLACL_PARAM.g.cs (1)
37
internal winmdroot.Foundation.
PWSTR
pStringSecurityDescriptor;
Windows.Win32.PInvoke.HTTPAPI.dll.g.cs (4)
808
/// <inheritdoc cref="HttpPrepareUrl(void*, uint, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.
PWSTR
*)"/>
810
internal static unsafe uint HttpPrepareUrl(string Url, out winmdroot.Foundation.
PWSTR
PreparedUrl)
812
fixed (winmdroot.Foundation.
PWSTR
* PreparedUrlLocal = &PreparedUrl)
839
internal static extern unsafe uint HttpPrepareUrl([Optional] void* Reserved, uint Flags, winmdroot.Foundation.PCWSTR Url, winmdroot.Foundation.
PWSTR
* PreparedUrl);
Windows.Win32.PWSTR.g.cs (10)
25
: IEquatable<
PWSTR
>
31
public static implicit operator char*(
PWSTR
value) => value.Value;
33
public static implicit operator
PWSTR
(char* value) => new PWSTR(value);
35
public static bool operator ==(
PWSTR
left,
PWSTR
right) => left.Value == right.Value;
37
public static bool operator !=(
PWSTR
left,
PWSTR
right) => !(left == right);
39
public bool Equals(
PWSTR
other) => this.Value == other.Value;
41
public override bool Equals(object obj) => obj is
PWSTR
other && this.Equals(other);
49
public static implicit operator PCWSTR(
PWSTR
value) => new PCWSTR(value.Value);