Class TargetAttachedEventArgs
Event arguments present when the TargetAttached event is raised.
public class TargetAttachedEventArgs : EventArgs
- Inheritance
-
TargetAttachedEventArgs
- Inherited Members
Constructors
TargetAttachedEventArgs(string, TargetInfo?, bool)
Initializes a new instance of the TargetAttachedEventArgs type.
public TargetAttachedEventArgs(string sessionId, TargetInfo? targetInfo, bool waitingForDebugger)
Parameters
sessionIdstringThe ID of the session of the target attached.
targetInfoTargetInfoThe target which is attached.
waitingForDebuggerboolIf the target is waiting on the debugger. Target continues after invoking
Runtime.runIfWaitingForDebugger.
Properties
SessionId
Gets the ID of the session of the target attached.
public string SessionId { get; }
Property Value
TargetInfo
Gets the target which is attached.
public TargetInfo? TargetInfo { get; }
Property Value
WaitingForDebugger
Gets if the target is waiting on the debugger. Target continues after invoking Runtime.runIfWaitingForDebugger.
public bool WaitingForDebugger { get; }