NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

AssemblyHash Constructor (AssemblyHashAlgorithm, Byte[])

Initializes a new AssemblyHash given the hash algorithm and the hash value.

[Visual Basic]
Overloads Public Sub New( _
   ByVal algorithm As AssemblyHashAlgorithm, _
   ByVal value() As Byte _
)
[C#]
public AssemblyHash(
   AssemblyHashAlgorithm algorithm,
   byte[] value
);
[C++]
public: AssemblyHash(
   AssemblyHashAlgorithm algorithm,
   unsigned char* value[]
);
[JScript]
public function AssemblyHash(
   algorithm : AssemblyHashAlgorithm,
   value : Byte[]
);

Parameters

algorithm
The algorithm used to generate the hash. This values for this parameter come from the AssemblyHashAlgorithm enumeration.
value
The hash value.

See Also

AssemblyHash Structure | AssemblyHash Members | System.Configuration.Assemblies Namespace | AssemblyHash Constructor Overload List