DkmSuccessEvaluationResult.ResolveAssembly Method

Definition

Resolves an assembly name to the path of the assembly or to its raw bytes.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 14 RTM (DkmApiVersion.VS14RTM).

public:
 void ResolveAssembly(System::String ^ AssemblyName, [Runtime::InteropServices::Out] System::String ^ % AssemblyPath, [Runtime::InteropServices::Out] System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ % AssemblyBytes);
public void ResolveAssembly (string AssemblyName, out string AssemblyPath, out System.Collections.ObjectModel.ReadOnlyCollection<byte> AssemblyBytes);
member this.ResolveAssembly : string * string * ReadOnlyCollection -> unit
Public Sub ResolveAssembly (AssemblyName As String, ByRef AssemblyPath As String, ByRef AssemblyBytes As ReadOnlyCollection(Of Byte))

Parameters

AssemblyName
String

[In] The fully qualified name of the assembly to resolve.

AssemblyPath
String

[Out,Optional] The path of the resolved assembly for local debugging.

AssemblyBytes
ReadOnlyCollection<Byte>

[Out,Optional] The byte array of the resolved assembly for remote debugging.

Applies to