-
Recent Posts
- Configuring TDD-style isolated tests for Windows Phone
- Writing asynchronous unit tests with Rx and the Silverlight Unit Testing Framework
- Practical support for custom light/dark theme resources on Windows Phone 7
- Creating a strongly typed reactive wrapper to INotifyPropertyChanged
- Error installing Windows Phone 7 Series SDK
Archives
- August 2011
- June 2011
- October 2010
- March 2010
- January 2010
- October 2009
- August 2009
- February 2009
- January 2009
- August 2008
- February 2008
- January 2008
- October 2007
- September 2007
- April 2007
- March 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- July 2006
- May 2006
- April 2006
- February 2006
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
Categories
- .NET
- .NET 2.0
- 64-bit
- actionscript
- AddIn
- AJAX
- asmock
- ASP.NET
- Atlas
- avm2
- Binary
- CardSpaces
- cruisecontrol.net
- CTP
- Debugging
- flash10
- flex
- FTP
- gaming
- IIS
- IIS7
- MMC
- MOSS 2007
- MSDN
- Office
- powershell
- Rx
- SharePoint
- SQL 2005
- travel
- Uncategorized
- unit-testing
- Utilities
- vector
- Vista
- Visual Studio.NET
- windows-phone
- windows-phone problem workaround
- WPF/E
- XML DML
- XPath
Meta
Category Archives: Rx
Writing asynchronous unit tests with Rx and the Silverlight Unit Testing Framework
The Reactive Extensions provide a great way for composing asynchronous actions, particularly on Windows Phone where IO operations are asynchronous-only. The Silverlight Unit Testing framework (including my CI-supporting port) supports asynchronous unit tests, but if you’ve attempted to use them … Continue reading
Posted in Rx, unit-testing, windows-phone
1 Comment
Creating a strongly typed reactive wrapper to INotifyPropertyChanged
Practical Ugliness INotifyPropertyChanged is a great, built-in, way for property change notification to work in the WPF/Silverlight world. Attempting to use it from staticly typed code, however, gets messy: Things get even worse when we try to make this reactive: … Continue reading
Posted in .NET, Rx
3 Comments