ECDiffieHellmanPublicKey Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
ECDiffieHellmanPublicKey() |
Inicializa uma nova instância da classe ECDiffieHellmanPublicKey. |
ECDiffieHellmanPublicKey(Byte[]) |
Obsoleto.
Inicializa uma nova instância da classe ECDiffieHellmanPublicKey. |
ECDiffieHellmanPublicKey()
- Origem:
- ECDiffieHellmanPublicKey.cs
- Origem:
- ECDiffieHellmanPublicKey.cs
- Origem:
- ECDiffieHellmanPublicKey.cs
Inicializa uma nova instância da classe ECDiffieHellmanPublicKey.
protected:
ECDiffieHellmanPublicKey();
protected ECDiffieHellmanPublicKey ();
Protected Sub New ()
Aplica-se a
ECDiffieHellmanPublicKey(Byte[])
- Origem:
- ECDiffieHellmanPublicKey.cs
- Origem:
- ECDiffieHellmanPublicKey.cs
- Origem:
- ECDiffieHellmanPublicKey.cs
Cuidado
ECDiffieHellmanPublicKey.ToByteArray() and the associated constructor do not have a consistent and interoperable implementation on all platforms. Use ECDiffieHellmanPublicKey.ExportSubjectPublicKeyInfo() instead.
Inicializa uma nova instância da classe ECDiffieHellmanPublicKey.
protected:
ECDiffieHellmanPublicKey(cli::array <System::Byte> ^ keyBlob);
protected ECDiffieHellmanPublicKey (byte[] keyBlob);
[System.Obsolete("ECDiffieHellmanPublicKey.ToByteArray() and the associated constructor do not have a consistent and interoperable implementation on all platforms. Use ECDiffieHellmanPublicKey.ExportSubjectPublicKeyInfo() instead.", DiagnosticId="SYSLIB0043", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected ECDiffieHellmanPublicKey (byte[] keyBlob);
new System.Security.Cryptography.ECDiffieHellmanPublicKey : byte[] -> System.Security.Cryptography.ECDiffieHellmanPublicKey
[<System.Obsolete("ECDiffieHellmanPublicKey.ToByteArray() and the associated constructor do not have a consistent and interoperable implementation on all platforms. Use ECDiffieHellmanPublicKey.ExportSubjectPublicKeyInfo() instead.", DiagnosticId="SYSLIB0043", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Security.Cryptography.ECDiffieHellmanPublicKey : byte[] -> System.Security.Cryptography.ECDiffieHellmanPublicKey
Protected Sub New (keyBlob As Byte())
Parâmetros
- keyBlob
- Byte[]
Uma matriz de bytes que representa um objeto ECDiffieHellmanPublicKey.
- Atributos
Exceções
keyBlob
é null
.
Comentários
Esse construtor é chamado por classes que derivam da ECDiffieHellmanPublicKey classe . A ECDiffieHellmanCngPublicKey classe é a única implementação com suporte no momento.