AssemblyHash 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 AssemblyHash 結構的新執行個體。
多載
AssemblyHash(Byte[]) |
已淘汰.
使用指定的雜湊值 (Hash Value),初始化 AssemblyHash 結構的新執行個體。 雜湊演算法預設值為 SHA1。 |
AssemblyHash(AssemblyHashAlgorithm, Byte[]) |
已淘汰.
使用指定的雜湊演算法和雜湊值,初始化 AssemblyHash 結構的新執行個體。 |
AssemblyHash(Byte[])
警告
The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202
使用指定的雜湊值 (Hash Value),初始化 AssemblyHash 結構的新執行個體。 雜湊演算法預設值為 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())
參數
- value
- Byte[]
雜湊值。
- 屬性
適用於
AssemblyHash(AssemblyHashAlgorithm, Byte[])
警告
The AssemblyHash class has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202
使用指定的雜湊演算法和雜湊值,初始化 AssemblyHash 結構的新執行個體。
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())
參數
- algorithm
- AssemblyHashAlgorithm
用來產生雜湊的演算法。 這個參數的值來自於 AssemblyHashAlgorithm 列舉型別 (Enumeration)。
- value
- Byte[]
雜湊值。
- 屬性