Share via


DkmHashValue.Create(String, ReadOnlyCollection<Byte>) Method

Definition

Create a new DkmHashValue object instance.

This API was introduced in Visual Studio 15 Update 9 (DkmApiVersion.VS15Update9).

public:
 static Microsoft::VisualStudio::Debugger::Symbols::DkmHashValue ^ Create(System::String ^ Algorithm, System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ Bytes);
public static Microsoft.VisualStudio.Debugger.Symbols.DkmHashValue Create (string Algorithm, System.Collections.ObjectModel.ReadOnlyCollection<byte> Bytes);
static member Create : string * System.Collections.ObjectModel.ReadOnlyCollection<byte> -> Microsoft.VisualStudio.Debugger.Symbols.DkmHashValue
Public Shared Function Create (Algorithm As String, Bytes As ReadOnlyCollection(Of Byte)) As DkmHashValue

Parameters

Algorithm
String

[In] The name of the cryptographic hashing algorithm used to calculate this hash, e.g. "SHA1".

Bytes
ReadOnlyCollection<Byte>

[In] The bytes of the hash value.

Returns

[Out] Result of this method call.

Applies to