4 instantiations of PCSTR
Microsoft.AspNetCore.Server.IIS (4)
Windows.Win32.PCSTR.g.cs (1)
38 public static explicit operator PCSTR(byte* value) => new PCSTR(value);
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;
15 references to PCSTR
Microsoft.AspNetCore.Server.IIS (15)
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_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.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"/>