示例#1
0
 /// <summary>
 /// Asynchronously sets the DevTools Protocol connection to automatically attach to new targets.
 /// </summary>
 /// <returns>A task that represents the asynchronous operation.</returns>
 public override async Task SetAutoAttach()
 {
     await adapter.SetAutoAttach(new SetAutoAttachCommandSettings()
     {
         AutoAttach = true, WaitForDebuggerOnStart = false, Flatten = true
     });
 }