Freigeben über


KestrelServerOptionsHttpsExtensions.UseHttps Methode

Definition

Überlädt

UseHttps(KestrelServerOptions, HttpsConnectionFilterOptions)

Konfiguriert Kestrel zur Verwendung von HTTPS.

UseHttps(KestrelServerOptions, X509Certificate2)

Konfiguriert Kestrel zur Verwendung von HTTPS.

UseHttps(KestrelServerOptions, String)

Konfiguriert Kestrel zur Verwendung von HTTPS.

UseHttps(KestrelServerOptions, String, String)

Konfiguriert Kestrel zur Verwendung von HTTPS.

UseHttps(KestrelServerOptions, HttpsConnectionFilterOptions)

Konfiguriert Kestrel zur Verwendung von HTTPS.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Server::Kestrel::KestrelServerOptions ^ UseHttps(Microsoft::AspNetCore::Server::Kestrel::KestrelServerOptions ^ options, Microsoft::AspNetCore::Server::Kestrel::Https::HttpsConnectionFilterOptions ^ httpsOptions);
public static Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions UseHttps (this Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions options, Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionFilterOptions httpsOptions);
static member UseHttps : Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions * Microsoft.AspNetCore.Server.Kestrel.Https.HttpsConnectionFilterOptions -> Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions
<Extension()>
Public Function UseHttps (options As KestrelServerOptions, httpsOptions As HttpsConnectionFilterOptions) As KestrelServerOptions

Parameter

options
KestrelServerOptions

Die zu konfigurierenden Microsoft.AspNetCore.Server.KestrelServerOptions.

httpsOptions
HttpsConnectionFilterOptions

Optionen zum Konfigurieren von HTTPS.

Gibt zurück

The Microsoft.AspNetCore.Server.KestrelServerOptions.

Gilt für:

UseHttps(KestrelServerOptions, X509Certificate2)

Konfiguriert Kestrel zur Verwendung von HTTPS.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Server::Kestrel::KestrelServerOptions ^ UseHttps(Microsoft::AspNetCore::Server::Kestrel::KestrelServerOptions ^ options, System::Security::Cryptography::X509Certificates::X509Certificate2 ^ serverCertificate);
public static Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions UseHttps (this Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions options, System.Security.Cryptography.X509Certificates.X509Certificate2 serverCertificate);
static member UseHttps : Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions * System.Security.Cryptography.X509Certificates.X509Certificate2 -> Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions
<Extension()>
Public Function UseHttps (options As KestrelServerOptions, serverCertificate As X509Certificate2) As KestrelServerOptions

Parameter

options
KestrelServerOptions

Die zu konfigurierenden Microsoft.AspNetCore.Server.KestrelServerOptions.

serverCertificate
X509Certificate2

Das X.509-Zertifikat.

Gibt zurück

The Microsoft.AspNetCore.Server.KestrelServerOptions.

Gilt für:

UseHttps(KestrelServerOptions, String)

Konfiguriert Kestrel zur Verwendung von HTTPS.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Server::Kestrel::KestrelServerOptions ^ UseHttps(Microsoft::AspNetCore::Server::Kestrel::KestrelServerOptions ^ options, System::String ^ fileName);
public static Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions UseHttps (this Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions options, string fileName);
static member UseHttps : Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions * string -> Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions
<Extension()>
Public Function UseHttps (options As KestrelServerOptions, fileName As String) As KestrelServerOptions

Parameter

options
KestrelServerOptions

Die zu konfigurierenden Microsoft.AspNetCore.Server.KestrelServerOptions.

fileName
String

Der Name einer Zertifikatdatei relativ zum Verzeichnis, das die Anwendungsinhaltsdateien enthält.

Gibt zurück

The Microsoft.AspNetCore.Server.KestrelServerOptions.

Gilt für:

UseHttps(KestrelServerOptions, String, String)

Konfiguriert Kestrel zur Verwendung von HTTPS.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::AspNetCore::Server::Kestrel::KestrelServerOptions ^ UseHttps(Microsoft::AspNetCore::Server::Kestrel::KestrelServerOptions ^ options, System::String ^ fileName, System::String ^ password);
public static Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions UseHttps (this Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions options, string fileName, string password);
static member UseHttps : Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions * string * string -> Microsoft.AspNetCore.Server.Kestrel.KestrelServerOptions
<Extension()>
Public Function UseHttps (options As KestrelServerOptions, fileName As String, password As String) As KestrelServerOptions

Parameter

options
KestrelServerOptions

Die zu konfigurierenden Microsoft.AspNetCore.Server.KestrelServerOptions.

fileName
String

Der Name einer Zertifikatdatei relativ zum Verzeichnis, das die Anwendungsinhaltsdateien enthält.

password
String

Das für den Zugriff auf die X.509-Zertifikatsdaten erforderliche Kennwort.

Gibt zurück

The Microsoft.AspNetCore.Server.KestrelServerOptions.

Gilt für: