X509Certificate.GetEffectiveDateString メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この X.509v3 証明書の発効日を返します。
public:
virtual System::String ^ GetEffectiveDateString();
public virtual string GetEffectiveDateString ();
abstract member GetEffectiveDateString : unit -> string
override this.GetEffectiveDateString : unit -> string
Public Overridable Function GetEffectiveDateString () As String
戻り値
X.509 証明書の発効日。
例
次の例では、このメソッドを GetEffectiveDateString 使用して証明書の有効日を取得し、コンソールに表示します。
using namespace System;
using namespace System::Security::Cryptography::X509Certificates;
int main()
{
// The path to the certificate.
String^ Certificate = "Certificate.cer";
// Load the certificate into an X509Certificate object.
X509Certificate^ cert = X509Certificate::CreateFromCertFile( Certificate );
// Get the value.
String^ results = cert->GetEffectiveDateString();
// Display the value to the console.
Console::WriteLine( results );
}
using System;
using System.Security.Cryptography.X509Certificates;
public class X509
{
public static void Main()
{
// The path to the certificate.
string Certificate = "Certificate.cer";
// Load the certificate into an X509Certificate object.
X509Certificate cert = X509Certificate.CreateFromCertFile(Certificate);
// Get the value.
string results = cert.GetEffectiveDateString();
// Display the value to the console.
Console.WriteLine(results);
}
}
Imports System.Security.Cryptography.X509Certificates
Public Class X509
Public Shared Sub Main()
' The path to the certificate.
Dim Certificate As String = "Certificate.cer"
' Load the certificate into an X509Certificate object.
Dim cert As X509Certificate = X509Certificate.CreateFromCertFile(Certificate)
' Get the value.
Dim results As String = cert.GetEffectiveDateString()
' Display the value to the console.
Console.WriteLine(results)
End Sub
End Class
注釈
有効日は、X.509 証明書が有効と見なされる日付です。
このメソッドは GetEffectiveDateString 、短い日付パターンで書式設定された日付と、長い時間パターンで書式設定された時刻を示す文字列を返します。 日付と時刻は、現在のカルチャとタイム ゾーンを使用して書式設定されます。