X509Certificate.GetEffectiveDateString Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mengembalikan tanggal efektif sertifikat X.509v3 ini.
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
Mengembalikan
Tanggal berlaku untuk sertifikat X.509 ini.
Contoh
Contoh berikut menggunakan GetEffectiveDateString metode untuk mendapatkan tanggal efektif sertifikat dan menampilkannya ke konsol.
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
Keterangan
Tanggal efektif adalah tanggal setelah sertifikat X.509 dianggap valid.
Metode GetEffectiveDateString mengembalikan string yang memperlihatkan tanggal yang diformat dalam Pola Tanggal Pendek diikuti dengan waktu yang diformat dalam Pola Waktu Panjang. Tanggal dan waktu diformat menggunakan budaya dan zona waktu saat ini.