Vb.net 如何获得Google Chrome的开发者工具网络面板的输出?VB

Vb.net 如何获得Google Chrome的开发者工具网络面板的输出?VB,vb.net,google-chrome-devtools,Vb.net,Google Chrome Devtools,如何特别使用Visual Basic像Chrome的网络面板[Network Panel->Name]一样获取信息 我想监控网络活动,如果一个名称包含某些内容,它将使用它来做一些事情。比如: Dim usercontent as String = Nothing If networkname.tostring.contains("user") then usercontent = networkname.tostring.replace("user", "") End If 正如

如何特别使用Visual Basic像Chrome的网络面板[Network Panel->Name]一样获取信息

我想监控网络活动,如果一个名称包含某些内容,它将使用它来做一些事情。比如:

Dim usercontent as String = Nothing 
If networkname.tostring.contains("user") then 
    usercontent = networkname.tostring.replace("user", "") 
End If

正如@tgolisch在评论中所说的:谷歌Chrome开发工具不是用.net编写的,它们也没有.net API。因此,您不能使用.net访问此区域。

Google Chrome开发工具不是用.net编写的,并且没有.net API。你想干什么?可能还有另一种方法。@tgolisch我希望监视网络活动,如果名称包含某些内容,它将使用它来执行某些操作。Like:Dim usercontent as String=Nothing If networkname.tostring.containsuser然后usercontent=networkname.tostring.replaceuser,如果