| File: _generated\29\Windows.Win32.HTTP_SSL_INFO.g.cs | Web Access |
| Project: src\aspnetcore\src\Servers\IIS\IIS\src\Microsoft.AspNetCore.Server.IIS.csproj (Microsoft.AspNetCore.Server.IIS) |
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> // ------------------------------------------------------------------------------ #pragma warning disable CS1591,CS1573,CS0465,CS0649,CS8019,CS1570,CS1584,CS1658,CS0436,CS8981,SYSLIB1092,CS3016 using global::System; using global::System.Diagnostics; using global::System.Diagnostics.CodeAnalysis; using global::System.Runtime.CompilerServices; using global::System.Runtime.InteropServices; using global::System.Runtime.Versioning; using winmdroot = global::Windows.Win32; namespace Windows.Win32 { namespace Networking.HttpServer { /// <summary>Contains data for a connection that uses Secure Sockets Layer (SSL), obtained through the SSL handshake.</summary> /// <remarks> /// <para>An <b>HTTP_SSL_INFO</b> structure can be pointed to by the <b>pSslInfo</b> member of an <a href="https://docs.microsoft.com/previous-versions/windows/desktop/legacy/aa364545(v=vs.85)">HTTP_REQUEST</a> structure.</para> /// <para><see href="https://learn.microsoft.com/windows/win32/api/http/ns-http-http_ssl_info#">Read more on learn.microsoft.com</see>.</para> /// </remarks> [global::System.CodeDom.Compiler.GeneratedCode("Microsoft.Windows.CsWin32", "0.3.296+7db75b4971.RR")] internal partial struct HTTP_SSL_INFO { /// <summary>The size, in bytes, of the public key used to sign the server certificate.</summary> internal ushort ServerCertKeySize; /// <summary>The size, in bytes, of the cipher key used to encrypt the current session.</summary> internal ushort ConnectionKeySize; /// <summary>The size, in bytes, of the string pointed to by the <b>pServerCertIssuer</b> member not including the terminating null character.</summary> internal uint ServerCertIssuerSize; /// <summary>The size, in bytes, of the string pointed to by the <b>pServerCertSubject</b> member not including the terminating null character.</summary> internal uint ServerCertSubjectSize; /// <summary>A pointer to a null-terminated string of octets that specifies the name of the entity that issued the certificate.</summary> internal winmdroot.Foundation.PCSTR pServerCertIssuer; /// <summary>A pointer to a null-terminated string of octets that specifies the name of the entity to which the certificate belongs.</summary> internal winmdroot.Foundation.PCSTR pServerCertSubject; /// <summary> /// <para>A pointer to an <a href="https://docs.microsoft.com/windows/desktop/api/http/ns-http-http_ssl_client_cert_info">HTTP_SSL_CLIENT_CERT_INFO</a> structure that specifies the client certificate.</para> /// <para><see href="https://learn.microsoft.com/windows/win32/api/http/ns-http-http_ssl_info#members">Read more on learn.microsoft.com</see>.</para> /// </summary> internal unsafe winmdroot.Networking.HttpServer.HTTP_SSL_CLIENT_CERT_INFO* pClientCertInfo; /// <summary>If non-zero, indicates that the client certificate is already present locally.</summary> internal uint SslClientCertNegotiated; } } }