X509Certificate.GetName メソッド
証明書の発行先であるプリンシパルの名前を返します。
Public Overridable Function GetName() As String
[C#]
public virtual string GetName();
[C++]
public: virtual String* GetName();
[JScript]
public function GetName() : String;
戻り値
証明書の発行先であるプリンシパルの名前。
使用例
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.GetName()
' 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.GetName();
// 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->GetName();
// 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 名前空間