IntelliTraceProcess.GetModule Method

Definition

Overloads

GetModule(Guid)

Gets a IntelliTraceModule from an mvid.

GetModule(Int64)

Gets a IntelliTraceModule from a module id.

GetModule(Guid)

Gets a IntelliTraceModule from an mvid.

public:
 Microsoft::VisualStudio::IntelliTrace::IntelliTraceModule ^ GetModule(Guid mvid);
public Microsoft.VisualStudio.IntelliTrace.IntelliTraceModule GetModule (Guid mvid);
member this.GetModule : Guid -> Microsoft.VisualStudio.IntelliTrace.IntelliTraceModule
Public Function GetModule (mvid As Guid) As IntelliTraceModule

Parameters

mvid
Guid

The mvid of the requested module.

Returns

The IntelliTraceModule for the given mvid; null if there is no matching module.

Applies to

GetModule(Int64)

Gets a IntelliTraceModule from a module id.

public:
 Microsoft::VisualStudio::IntelliTrace::IntelliTraceModule ^ GetModule(long moduleId);
public:
 Microsoft::VisualStudio::IntelliTrace::IntelliTraceModule ^ GetModule(long long moduleId);
Microsoft::VisualStudio::IntelliTrace::IntelliTraceModule GetModule(long moduleId);
public Microsoft.VisualStudio.IntelliTrace.IntelliTraceModule GetModule (long moduleId);
member this.GetModule : int64 -> Microsoft.VisualStudio.IntelliTrace.IntelliTraceModule
Public Function GetModule (moduleId As Long) As IntelliTraceModule

Parameters

moduleId
Int64

Returns

The IntelliTraceModule for the given module id; null if there is no matching module.

Applies to