我在线程中运行以下代码,以枚举active directory中的本地计算机。这需要一些时间来完成(大约5-10秒),所以如果用户在枚举完成之前退出应用程序,应用程序需要5-10秒才能退出。我尝试过thread.abort,但因为它正在等待For Each SubChildEntry In SubParentEntry.Children完成,所以直到它返回时才中止。
Dim childEntry As DirectoryEntry = Nothing
Dim ParentEntry As New DirectoryEntry
ParentEntry.Path = "WinNT:"
For Each childEntry In ParentEntry.Children
Windows.Forms.Application.DoEvents()
Select Case childEntry.SchemaClassName
Case "Domain"
Dim SubChildEntry As DirectoryEntry
Dim SubParentEntry As New DirectoryEntry
SubParentEntry.Path = "WinNT://" & childEntry.Name
'The following line takes a long time to complete
'the thread will not abort until this returns
For Each SubChildEntry In SubParentEntry.Children
Select Case SubChildEntry.SchemaClassName
Case "Computer"
_collServers.Add(SubChildEntry.Name.ToUpper)
End Select
Next
End Select
Next
RaiseEvent EnumComplete()发布于 2011-05-25 19:33:56
如果您使用的是BackgroundWorker线程,它支持取消,请参阅此答案
发布于 2011-05-25 19:40:18
其想法可能是管理一个CancelPending属性,该属性可以安全地设置和检查,以查看是否应该继续执行:
For Each j In k
If (CancelPending) Then
Exit For
End If
...
Select ...
Case "a"
...
For Each x In y
If (CancelPending) Then
Exit For
End If
...
Next
End Select
Next您可以将CancelPending设置为true作为取消逻辑的一部分,并期望该过程更快地停止。
https://stackoverflow.com/questions/6123716
复制相似问题