每日一贴,今天的内容关键字为event级别 设置Resumable Space Allocation 设置Resumable Space Allocation 1.实例级别 RESUMABLE_TIMEOUT = 3600 ALTER SYSTEM SET RESUMABLE_TIMEOUT=xxx; ----设置为 0 表现禁用 2.session级别: 启用: ALTER SESSION ENABLE RESUMABLE; 禁用: ALT…
原文:Prism for WPF 搭建一个简单的模块化开发框架(四)异步调用WCF服务.WCF消息头添加安全验证Token 为什么选择wcf? 因为好像wcf和wpf就是哥俩,,, 为什么选择异步调用? 用起来体验相对好一点,不会因为服务的速度影响用户体验,避免页面假死 首先新建一个wcf服务程序 public class ServiceLogin : IServiceLogin { public bool Login(string username, string pwd) { if (…