X509Certificate.GetIssuerName Método

Definição

Cuidado

This method has been deprecated. Please use the Issuer property instead. https://go.microsoft.com/fwlink/?linkid=14202

Cuidado

X509Certificate.GetIssuerName has been deprecated. Use the Issuer property instead.

Cuidado

This method has been deprecated. Please use the Issuer property instead. http://go.microsoft.com/fwlink/?linkid=14202

Cuidado

Use the Issuer property.

Retorna o nome da autoridade de certificação que emitiu o certificado X.509v3.

public:
 virtual System::String ^ GetIssuerName();
[System.Obsolete("This method has been deprecated.  Please use the Issuer property instead.  https://go.microsoft.com/fwlink/?linkid=14202")]
public virtual string GetIssuerName ();
[System.Obsolete("X509Certificate.GetIssuerName has been deprecated. Use the Issuer property instead.")]
public virtual string GetIssuerName ();
[System.Obsolete("This method has been deprecated.  Please use the Issuer property instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
public virtual string GetIssuerName ();
public virtual string GetIssuerName ();
[System.Obsolete("Use the Issuer property.")]
public virtual string GetIssuerName ();
[<System.Obsolete("This method has been deprecated.  Please use the Issuer property instead.  https://go.microsoft.com/fwlink/?linkid=14202")>]
abstract member GetIssuerName : unit -> string
override this.GetIssuerName : unit -> string
[<System.Obsolete("X509Certificate.GetIssuerName has been deprecated. Use the Issuer property instead.")>]
abstract member GetIssuerName : unit -> string
override this.GetIssuerName : unit -> string
[<System.Obsolete("This method has been deprecated.  Please use the Issuer property instead.  http://go.microsoft.com/fwlink/?linkid=14202")>]
abstract member GetIssuerName : unit -> string
override this.GetIssuerName : unit -> string
abstract member GetIssuerName : unit -> string
override this.GetIssuerName : unit -> string
[<System.Obsolete("Use the Issuer property.")>]
abstract member GetIssuerName : unit -> string
override this.GetIssuerName : unit -> string
Public Overridable Function GetIssuerName () As String

Retornos

String

O nome da autoridade de certificação que emitiu o certificado X.509.

Atributos

Exceções

Ocorre um erro com o certificado. Por exemplo:

  • O arquivo de certificado não existe.

  • O certificado é inválido.

  • A senha do certificado está incorreta.

Exemplos

O exemplo a seguir usa o GetIssuerName método para retornar o nome do emissor do certificado e exibe-o no console.

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->GetIssuerName();
   
   // 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.GetIssuerName();

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

Aplica-se a