1 instantiation of PWSTR
Microsoft.AspNetCore.Server.HttpSys (1)
Windows.Win32.PWSTR.g.cs (1)
33 public static implicit operator PWSTR(char* value) => new PWSTR(value);
14 references to PWSTR
Microsoft.AspNetCore.Server.HttpSys (14)
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.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);