AssemblyHash Construtores
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Inicializa uma nova instância da AssemblyHash estrutura.
Sobrecargas
| Name | Description |
|---|---|
| AssemblyHash(Byte[]) |
Obsoleto.
Inicializa uma nova instância da AssemblyHash estrutura com o valor de hash especificado. O algoritmo de hash tem por defeito .SHA1 |
| AssemblyHash(AssemblyHashAlgorithm, Byte[]) |
Obsoleto.
Inicializa uma nova instância da AssemblyHash estrutura com o algoritmo de hash especificado e o valor de hash. |
AssemblyHash(Byte[])
Atenção
The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202
Inicializa uma nova instância da AssemblyHash estrutura com o valor de hash especificado. O algoritmo de hash tem por defeito .SHA1
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 hash.
- Atributos
Aplica-se a
AssemblyHash(AssemblyHashAlgorithm, Byte[])
Atenção
The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202
Inicializa uma nova instância da AssemblyHash estrutura com o algoritmo de hash especificado e o valor de hash.
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 deste parâmetro provêm da AssemblyHashAlgorithm enumeração.
- value
- Byte[]
O valor hash.
- Atributos