4 instantiations of PCSTR
Microsoft.AspNetCore.Server.IIS (4)
Windows.Win32.PCSTR.g.cs (1)
39 public static explicit operator PCSTR(byte* value) => new PCSTR(value);
Windows.Win32.PSTR.g.cs (3)
51 public override string ToString() => new PCSTR(this.Value).ToString(); 53 public static implicit operator PCSTR(PSTR value) => new PCSTR(value.Value); 57 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)
28 : IEquatable<PCSTR> 37 public static implicit operator byte*(PCSTR value) => value.Value; 39 public static explicit operator PCSTR(byte* value) => new PCSTR(value); 41 public bool Equals(PCSTR other) => this.Value == other.Value; 43 public override bool Equals(object obj) => obj is PCSTR other && this.Equals(other);
Windows.Win32.PSTR.g.cs (3)
50 /// <inheritdoc cref="PCSTR.ToString()"/> 53 public static implicit operator PCSTR(PSTR value) => new PCSTR(value.Value); 56 /// <inheritdoc cref="PCSTR.Length"/>