次の方法で共有


X509Certificate.GetRawCertDataString メソッド

X.509v3 証明書全体の生データを返します。

Public Overridable Function GetRawCertDataString() As String
[C#]
public virtual string GetRawCertDataString();
[C++]
public: virtual String* GetRawCertDataString();
[JScript]
public function GetRawCertDataString() : String;

戻り値

16 進数文字列形式の X.509 証明書データ。

使用例

 
Imports System
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.GetRawCertDataString()
      
      ' Display the value to the console.
      Console.WriteLine(results)
   End Sub
End Class 



[C#] 

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.GetRawCertDataString();
       
        // Display the value to the console.
        Console.WriteLine(results);


  
    }

}

[C++] 

#using <mscorlib.dll>
using namespace System;
using namespace System::Security::Cryptography::X509Certificates;

int main()
{

    // The path to the certificate.
    String* Certificate =  S"Certificate.cer";

    // Load the certificate into an X509Certificate object.
    X509Certificate* cert = X509Certificate::CreateFromCertFile(Certificate);

    // Get the value.
    String* results = cert->GetRawCertDataString();

    // Display the value to the console.
    Console::WriteLine(results);

}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

X509Certificate クラス | X509Certificate メンバ | System.Security.Cryptography.X509Certificates 名前空間