IntelliTraceProcess.GetModule Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.