Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
模拟后,我在 c# 代码中收到以下错误。
{“用于模拟的令牌无效 - 不能复制。”}
它是普通的 WPF Windows 应用程序。在应用程序开始时模拟了不同的用户。在随机位置出现此错误。
我有类似的问题,解决方案是在实际任务级别设置模拟上下文,而不是在单个模拟上下文下执行所有任务。早些时候,当我直接从按钮单击事件中使用模拟上下文时,我正在执行所有相关任务,但意识到模拟上下文在任务之间失败了。因此,一旦我将上下文分离为专门用于每个任务,一切正常!祝你好运。