KestrelServerOptionsHttpsExtensions.UseHttps Yöntem

Tanım

Aşırı Yüklemeler

UseHttps(KestrelServerOptions, HttpsConnectionFilterOptions)

Kestrel'i HTTPS kullanacak şekilde yapılandırın.

UseHttps(KestrelServerOptions, X509Certificate2)

Kestrel'i HTTPS kullanacak şekilde yapılandırın.

UseHttps(KestrelServerOptions, String)

Kestrel'i HTTPS kullanacak şekilde yapılandırın.

UseHttps(KestrelServerOptions, String, String)

Kestrel'i HTTPS kullanacak şekilde yapılandırın.

UseHttps(KestrelServerOptions, HttpsConnectionFilterOptions)

Kestrel'i HTTPS kullanacak şekilde yapılandırın.

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

Parametreler

options
KestrelServerOptions

Yapılandırılan Microsoft.AspNetCore.Server.KestrelServerOptions.

httpsOptions
HttpsConnectionFilterOptions

HTTPS yapılandırma seçenekleri.

Döndürülenler

The Microsoft.AspNetCore.Server.KestrelServerOptions.

Şunlara uygulanır

UseHttps(KestrelServerOptions, X509Certificate2)

Kestrel'i HTTPS kullanacak şekilde yapılandırın.

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

Parametreler

options
KestrelServerOptions

Yapılandırılan Microsoft.AspNetCore.Server.KestrelServerOptions.

serverCertificate
X509Certificate2

X.509 sertifikası.

Döndürülenler

The Microsoft.AspNetCore.Server.KestrelServerOptions.

Şunlara uygulanır

UseHttps(KestrelServerOptions, String)

Kestrel'i HTTPS kullanacak şekilde yapılandırın.

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

Parametreler

options
KestrelServerOptions

Yapılandırılan Microsoft.AspNetCore.Server.KestrelServerOptions.

fileName
String

Uygulama içerik dosyalarını içeren dizine göre bir sertifika dosyasının adı.

Döndürülenler

The Microsoft.AspNetCore.Server.KestrelServerOptions.

Şunlara uygulanır

UseHttps(KestrelServerOptions, String, String)

Kestrel'i HTTPS kullanacak şekilde yapılandırın.

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

Parametreler

options
KestrelServerOptions

Yapılandırılan Microsoft.AspNetCore.Server.KestrelServerOptions.

fileName
String

Uygulama içerik dosyalarını içeren dizine göre bir sertifika dosyasının adı.

password
String

X.509 sertifika verilerine erişmek için gereken parola.

Döndürülenler

The Microsoft.AspNetCore.Server.KestrelServerOptions.

Şunlara uygulanır