【发布时间】:2017-09-22 09:56:14
【问题描述】:
如何像 Chrome 的网络面板[网络面板 -> 名称] 专门使用 Visual Basic 获取信息。
我想监视网络活动,如果名称包含某些内容,它将使用它来做某事。喜欢:
Dim usercontent as String = Nothing
If networkname.tostring.contains("user") then
usercontent = networkname.tostring.replace("user", "")
End If
【问题讨论】:
-
Google Chrome 开发工具不是用 .net 编写的,也没有 .net API。你想做什么?可能还有其他方法。
-
@tgolisch 我想监控网络活动,如果名称包含 something 它将使用它来做某事。喜欢: Dim usercontent as String = Nothing If networkname.tostring.contains("user") then usercontent = networkname.tostring.replace("user", "") End If
标签: vb.net google-chrome-devtools