从Web服务(WCF),我希望端点花费10秒钟完成.
有没有办法thread.sleep(10);在方法上做?
thread.sleep(10);
您可以创建一个执行适当睡眠的包装器方法.
Thread.Sleep(TimeSpan.FromSeconds(10))