上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页
摘要: 一直想找一个系统的WCF入门提高的书籍,却未能如愿;阅读了MSDN的有关章节,发现写的很好---深入浅出,言简意赅,Programmer to Programmer,固写下此文,方便个人索引。下面是MSDN的WCF文档的目录链接:Windows Communication Foundation阅读从"文档指南"开始,它提供有关 Windows Communication Foundation (WCF) 文档的指南。链接的文档是建议的起始点,它们按照特定的兴趣和专业知识进行分组。注意打开具体内容页面后选择.NET4.0版本,和3.5内容是不一样的。------------- 阅读全文
posted @ 2013-03-12 15:05 DebugLZQ 阅读(1265) 评论(1) 推荐(1) 编辑
摘要: Table of contentsIntroduction and goalPre-requisitesWhy do we need concurrency in WCF?WCF concurrency and instancing – Two different thingsThree types of WCF concurrencySample code demonstration9 combinations of instancing and concurrencyInstance mode = Per Call and Concurrency = SingleInstance mode 阅读全文
posted @ 2013-03-08 10:39 DebugLZQ 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: Nearly a week time has passed since I joined the new Company on March 04,2013. It's my honour tobea employee ofthis GermanCompany, for the atmosphere ... 阅读全文
posted @ 2013-03-07 12:43 DebugLZQ 阅读(404) 评论(3) 推荐(0) 编辑
摘要: 公司需要使用TortoiseSVN,从Internet上面找到这个资料,觉得很好,遂记录下来给自己参考。Click here to get thebrief introduction.这个讲的简短随意。这里是Subversion中文站(其中的“文档” *权威*全面*推荐)//-------------------------------下面是基本的应用快速参考。1. SVN Checkout Repository在本地NEW一个工程文件件,在文件夹上右击选择会弹出如下的对话框输入repository的地址和本地工程目录的路径,选择检出的选项和想要的版本号(Head revision是最新版)点 阅读全文
posted @ 2013-03-06 13:29 DebugLZQ 阅读(731) 评论(0) 推荐(0) 编辑
摘要: Table of contentsIntroductionWCF service object instancing basicsPer call instance modeHow to implement WCF per call instancingPer session instance modeHow to implement per session instancingSingle instance modeHow to implement single instance modeWhen should you use per call, per session, and singl 阅读全文
posted @ 2012-12-26 14:07 DebugLZQ 阅读(629) 评论(2) 推荐(0) 编辑
摘要: WCF对我来讲既熟悉又陌生,说它熟悉,是因为看过几本关于它的书籍和一些博客,对他有一些基本的了解(用熟悉可能是有点过了!);又因为在项目中还没有用到过,所以缺乏相应的项目经验,所以看起来又陌生。因为公司要涉及到WCF的相关内容,所以再留意一下这个技术。整个WCF当然不是几篇博文就能学习的透,讲的清楚的,整个认识,只有经过一定项目的锻炼才能达到认识层次的提升。说到书籍,园子里的牛人Artech写过关于WCF的书籍,这里写下自己的读后的2点感觉,虽然我只看了上册:1.有些内容从英文翻译过来后,Artech翻译的有点照本宣科,句子的组织让我很难受,很难理解!查阅英文的相关文章进行比较,很难看出写得是 阅读全文
posted @ 2012-12-25 13:48 DebugLZQ 阅读(737) 评论(5) 推荐(0) 编辑
摘要: IntroductionIn this article, I am describing what is Window Communication Foundation (WCF) andwhy it is introduced in .NET Framework 3.0.BackgroundIn Modern Application (Distributed Application) development, you can use COM+, .NET Enterprise Services, MSMQ, .NET Remoting, Web services, etc. for comm 阅读全文
posted @ 2012-12-22 22:31 DebugLZQ 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 由于公司开发的技术需求,近期在学习MVVM模式开发WPF应用程序。进过一段时间的学习,感受到:学习MVVM模式,最好的方法就是用MVVM做几个Demo,因为编程里面的东西还是原来的WPF的相关知识。最近学习的资料来源大多为CodePlex、CodeProject和MSDN,以及博客园MS的MVP刘铁锰的一些资料。前面几篇博文DebugLZQ写了,如何来写MVVM,以及Prism框架的安装等等。本篇在前面的基础上,通过一个相对复杂一点的Demo,来学习Prism中的一些类的使用。首先来介绍下今天这个Demo要实现的功能,今天开启的系统是XP,所以下面各位看到的将是XP风格的界面。:·界 阅读全文
posted @ 2012-12-17 19:44 DebugLZQ 阅读(10843) 评论(6) 推荐(3) 编辑
摘要: 前面的博文My First MVVM Demo,DebugLZQ用MVVM实现了一个简单的Demo。本文旨在使用Prism提供的一些现有类,来简化前面Hello MVVM。关于Prism的安装,可以参考DebugLZQ前面的博文Prepare for Prism。为了使用Prism框架提供的DelegateCommand、NotificationObject需要添加Prism的引用,参考前面的博文。实现MainWindowViewModel类如下:using System;using Microsoft.Practices.Prism.ViewModel;//using Microsoft.P 阅读全文
posted @ 2012-12-14 22:31 DebugLZQ 阅读(3220) 评论(7) 推荐(0) 编辑
摘要: Prism框架由MS patterns&practices团队开发。下面是Prism的介绍: Prism provides guidance designed to help you more easily design and build rich, flexible, and easy-to-maintain Windows Presentation Foundation (WPF) desktop applications and Silverlight Rich Internet Applications (RIAs) and Windows Phone 7 applicati 阅读全文
posted @ 2012-12-14 21:38 DebugLZQ 阅读(1330) 评论(2) 推荐(2) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页