4 instantiations of PCWSTR
Microsoft.AspNetCore.Server.IIS (4)
Windows.Win32.PCWSTR.g.cs (1)
38 public static implicit operator PCWSTR(char* value) => new PCWSTR(value);
Windows.Win32.PWSTR.g.cs (3)
47 public override string ToString() => new PCWSTR(this.Value).ToString(); 49 public static implicit operator PCWSTR(PWSTR value) => new PCWSTR(value.Value); 53 internal int Length => new PCWSTR(this.Value).Length;
14 references to PCWSTR
Microsoft.AspNetCore.Server.IIS (14)
Windows.Win32.HTTP_COOKED_URL.g.cs (4)
40 internal winmdroot.Foundation.PCWSTR pFullUrl; 43 internal winmdroot.Foundation.PCWSTR pHost; 46 internal winmdroot.Foundation.PCWSTR pAbsPath; 49 internal winmdroot.Foundation.PCWSTR pQueryString;
Windows.Win32.HTTP_DATA_CHUNK.g.cs (2)
74 internal winmdroot.Foundation.PCWSTR pFragmentName; 82 internal winmdroot.Foundation.PCWSTR pFragmentName;
Windows.Win32.PCWSTR.g.cs (5)
27 : IEquatable<PCWSTR> 36 public static explicit operator char*(PCWSTR value) => value.Value; 38 public static implicit operator PCWSTR(char* value) => new PCWSTR(value); 40 public bool Equals(PCWSTR other) => this.Value == other.Value; 42 public override bool Equals(object obj) => obj is PCWSTR other && this.Equals(other);
Windows.Win32.PWSTR.g.cs (3)
46 /// <inheritdoc cref="PCWSTR.ToString()"/> 49 public static implicit operator PCWSTR(PWSTR value) => new PCWSTR(value.Value); 52 /// <inheritdoc cref="PCWSTR.Length"/>