Showing related tags and posts accross the entire site.
-
Last week after finishing manuscripts of my book , I promised to get back to regular blogging and give more stuff about programming and .NET especially about newly released .NET 3.5 so here you go! It's been a long time since the last time that I sent a blog post with programming codes, isn't...
-
Yesterday, Bill Bridges (Development Editor of my new book) sent me an email about a problem in one of the recent chapters of my upcoming book about Visual Studio Extensibility. The problem, that had taken half an hour of his time to get fixed was a simple formatting problem in one of source code samples...
-
If you do unit tests frequently, know that unit testing a generic list is a very common scenario because generic lists are a common part of today's codes in the .NET world. Testing the equality of two generic lists isn't as easy as easy testing the equality of two objects from two simple types...
-
You know that there are two common ways to host a Windows Communication Foundation service as a self-hosted service or in IIS. But there is a division of self-hosting that is a bit different and that is self-hosting a WCF service in a Windows service. In this post I talk about this shortly. Self-hosting...
-
If you can recall from my older posts, I had discussed about tracing and message logging in Windows Communication Foundation before. There is another option to monitor diagnostics of a WCF application using Windows Management Instrumentation (WMI) and is the topic of this post. There are three steps...
-
Back in September 2006 I wrote a CS Dev Guide post about emailing in Community Server 2.1 . In Community Server 2007 emailing has changed a lot and now we can consider it as something completely new. I can say that Ken Robertson has done a great job on enhancing email features in Community Server 2007...
-
When working on a chapter of my upcoming Professional Visual Studio Add-ins and Extensions book, I wrote about MSBuild tasks and writing a custom task for custom scenarios. Let me write a short description about it here as well. Writing a custom MSBuild task consists of creating a class in an assembly...
-
As a part of my implementation of Google Safe Browsing API in Subkismet project, I was working on an XML provider to store data in XML files and load them later. One of approaches that I tried to test was using a DataSet to store my data as XML and load it from the file to a DataSet and generally building...
-
When working on the book , I noticed something very nice in Visual Studio 2008 SDK. Maybe it was a part of Visual Studio 2005 SDK but I haven't tested it! Visual Studio SDK installs a code template for unit testing Visual Studio dialog boxes (and some other common scenarios) by default. When working...
-
Last week, I talked about SendActivity in Windows Workflow 3.5 and today talk about ReceiveActivity. This activity can be used in WCF services in order to listen for a specific service method and handle its logic in a workflow. ReceiveActivity can work as a container for other activities and hold them...