AssemblyHash Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci AssemblyHash struktury.
Přetížení
AssemblyHash(Byte[]) |
Zastaralé.
Inicializuje novou instanci AssemblyHash struktury se zadanou hodnotou hash. Výchozí hodnota hashového algoritmu je SHA1. |
AssemblyHash(AssemblyHashAlgorithm, Byte[]) |
Zastaralé.
Inicializuje novou instanci AssemblyHash struktury pomocí zadaného hash algoritmu a hodnoty hash. |
AssemblyHash(Byte[])
Upozornění
The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202
Inicializuje novou instanci AssemblyHash struktury se zadanou hodnotou hash. Výchozí hodnota hashového algoritmu je 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())
Parametry
- value
- Byte[]
Hodnota hash
- Atributy
Platí pro
AssemblyHash(AssemblyHashAlgorithm, Byte[])
Upozornění
The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202
Inicializuje novou instanci AssemblyHash struktury pomocí zadaného hash algoritmu a hodnoty 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())
Parametry
- algorithm
- AssemblyHashAlgorithm
Algoritmus použitý k vygenerování hodnoty hash. Hodnoty pro tento parametr pocházejí z výčtu AssemblyHashAlgorithm .
- value
- Byte[]
Hodnota hash
- Atributy