Speaking At The Swiss Alt.net Group On 25 November
I will be speaking at the next ALT.NET Swiss user group on the 25th of November. I will be showing of latest version of the Calcium SDK, and looking at some other MVVM frameworks created by my fellow Disciples. Special thanks go out to Frederic Schafer, and Atif Aziz of Cargill International SA, for making the meeting a reality. Nice one guys. The details are: 25 November at 18:30 Cargill Conference Center Cargill International SA...
Compile Time Validation Of Composite Object Data Binding Expressions
Introduction Prompted by a recent comment on the T4 Metadata Generation template article, which I released some weeks ago, I have implemented a new mechanism for concatenating property paths. This allows compile time validation of properties that exist on composite or nested members. Background Previously I have demonstrated how generated metadata can be used to provide compile-time validation of binding expressions. Rather than using string literals in binding expressions, one is able to use the...
Calcium Website Launch
I’ve just launched a new website for the Calcium project.
It includes a video on how to use the new version of the Calcium SDK, which I’ve also just released.
I’m pretty excited about this one. The new version includes an installer that makes working with Calcium much easier, and a bunch of API refinements.
Calling Web Services From Silverlight As The Browser Is Closed
Introduction Today I was reading an excellent post by my fellow Disciple Laurent Bugnion, which led on to a short discussion about performing actions after a user attempts to close a browser window. It got me thinking about the capability to dispatch a web service call in Silverlight just after a user attempts to close the browser window or navigate elsewhere. I have been asked the question before, yet before now, have not attempted to...
App.config Type String Verification With Msbuild
Nicolas Dorier and I have posted a new article on verifying type string names in app.config files using MSBuild. The App.Config Type verifier is a custom MSBuild task. It examines your app.config file at compile time and verifies that string type names are resolvable. To demonstrate, let’s take a look at a simple example. The following is an excerpt from an app.config file. <configuration> <configSections> <section name="name1" type="Foo.BahType, Foo"/> </configSections> </configuration> Here we have a...