AssemblyHash 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.
Inicializa uma nova instância da estrutura AssemblyHash.
Sobrecargas
AssemblyHash(Byte[]) |
Obsoleto.
Inicializa uma nova instância da estrutura AssemblyHash com o valor de hash especificado. O algoritmo de hash usa SHA1 como padrão. |
AssemblyHash(AssemblyHashAlgorithm, Byte[]) |
Obsoleto.
Inicializa uma nova instância da estrutura AssemblyHash com o algoritmo de hash e o valor de hash especificados. |
AssemblyHash(Byte[])
Cuidado
The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202
Inicializa uma nova instância da estrutura AssemblyHash com o valor de hash especificado. O algoritmo de hash usa SHA1 como padrão.
public:
AssemblyHash(cli::array <System::Byte> ^ value);
public AssemblyHash (byte[] value);
[System.Obsolete("The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")]
public AssemblyHash (byte[] value);
new System.Configuration.Assemblies.AssemblyHash : byte[] -> System.Configuration.Assemblies.AssemblyHash
[<System.Obsolete("The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")>]
new System.Configuration.Assemblies.AssemblyHash : byte[] -> System.Configuration.Assemblies.AssemblyHash
Public Sub New (value As Byte())
Parâmetros
- value
- Byte[]
O valor de hash.
- Atributos
Aplica-se a
AssemblyHash(AssemblyHashAlgorithm, Byte[])
Cuidado
The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202
Inicializa uma nova instância da estrutura AssemblyHash com o algoritmo de hash e o valor de hash especificados.
public:
AssemblyHash(System::Configuration::Assemblies::AssemblyHashAlgorithm algorithm, cli::array <System::Byte> ^ value);
public AssemblyHash (System.Configuration.Assemblies.AssemblyHashAlgorithm algorithm, byte[] value);
[System.Obsolete("The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")]
public AssemblyHash (System.Configuration.Assemblies.AssemblyHashAlgorithm algorithm, byte[] value);
new System.Configuration.Assemblies.AssemblyHash : System.Configuration.Assemblies.AssemblyHashAlgorithm * byte[] -> System.Configuration.Assemblies.AssemblyHash
[<System.Obsolete("The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")>]
new System.Configuration.Assemblies.AssemblyHash : System.Configuration.Assemblies.AssemblyHashAlgorithm * byte[] -> System.Configuration.Assemblies.AssemblyHash
Public Sub New (algorithm As AssemblyHashAlgorithm, value As Byte())
Parâmetros
- algorithm
- AssemblyHashAlgorithm
O algoritmo usado para gerar o hash. Os valores para esse parâmetro vêm da enumeração AssemblyHashAlgorithm.
- value
- Byte[]
O valor de hash.
- Atributos