DebugRequestMessage Constructors

Definition

Overloads

DebugRequestMessage(Guid, DebugTargetInfo)

Initializes an instance of the DebugRequestMessage class by using the provided GUID and target debug information.

DebugRequestMessage(Guid, DebugTargetInfo, DebugEventHandler)

Initializes an instance of the DebugRequestMessage class by using the provided GUID, target debug information, and debug event handler for callback.

DebugRequestMessage(Guid, DebugTargetInfo)

Initializes an instance of the DebugRequestMessage class by using the provided GUID and target debug information.

public:
 DebugRequestMessage(Guid runId, Microsoft::VisualStudio::TestTools::Common::DebugTargetInfo ^ targetInfo);
public DebugRequestMessage (Guid runId, Microsoft.VisualStudio.TestTools.Common.DebugTargetInfo targetInfo);
new Microsoft.VisualStudio.TestTools.Common.DebugRequestMessage : Guid * Microsoft.VisualStudio.TestTools.Common.DebugTargetInfo -> Microsoft.VisualStudio.TestTools.Common.DebugRequestMessage
Public Sub New (runId As Guid, targetInfo As DebugTargetInfo)

Parameters

runId
Guid

A GUID to uniquely identify the test run.

targetInfo
DebugTargetInfo

A DebugTargetInfo object that contains information about the test run.

Applies to

DebugRequestMessage(Guid, DebugTargetInfo, DebugEventHandler)

Initializes an instance of the DebugRequestMessage class by using the provided GUID, target debug information, and debug event handler for callback.

public:
 DebugRequestMessage(Guid runId, Microsoft::VisualStudio::TestTools::Common::DebugTargetInfo ^ targetInfo, Microsoft::VisualStudio::TestTools::Common::DebugEventHandler ^ debugEventHandler);
public DebugRequestMessage (Guid runId, Microsoft.VisualStudio.TestTools.Common.DebugTargetInfo targetInfo, Microsoft.VisualStudio.TestTools.Common.DebugEventHandler debugEventHandler);
new Microsoft.VisualStudio.TestTools.Common.DebugRequestMessage : Guid * Microsoft.VisualStudio.TestTools.Common.DebugTargetInfo * Microsoft.VisualStudio.TestTools.Common.DebugEventHandler -> Microsoft.VisualStudio.TestTools.Common.DebugRequestMessage
Public Sub New (runId As Guid, targetInfo As DebugTargetInfo, debugEventHandler As DebugEventHandler)

Parameters

runId
Guid

A GUID to uniquely identify the test run.

targetInfo
DebugTargetInfo

A DebugTargetInfo object that contains information about the test run.

debugEventHandler
DebugEventHandler

The DebugEventHandler method that will handle the callback event.

Applies to