Posts by this author

Jan 12, 2021
4
1

Migrating RealProxy Usage to DispatchProxy

The RealProxy type is not available in .NET Core or .NET 5, but other replacement types have been added. This post looks at how DispatchProxy and Castle.Core's DynamicProxy enable AOP paradigms in .NET 5.

.NET.NET Core
Jan 7, 2021
4
0

WSFederationHttpBinding in .NET Standard

The new `System.ServiceModel.Federation` package adds support for `WSFederationHttpBinding` and `WS2007FederationHttpBinding` which enable WS-Federation authentication scenarios. In this post, I'll show you you the basics of getting started with these client-side bindings in your .NET Core applications and .NET Standard libraries.

.NET.NET Core
Jun 10, 2019
6
0

Migrating a Sample WPF App to .NET Core 3 (Part 2)

In part 1 of this blog series, I began the process of porting a sample WPF app to .NET Core. In that post, I described the .NET Core migration process as having four steps: We previously went through the first two steps - reviewing the app and its dependencies (including NuGet dependencies and a .NET Portability Analyzer report), updating NuGet ...

.NET Core.NET.NET Framework
Jun 10, 2019
7
0

Migrating a Sample WPF App to .NET Core 3 (Part 1)

Olia recently wrote a post about how to port a WinForms app from .NET Framework to .NET Core. Today, I'd like to follow that up by walking through the steps to migrate a sample WPF app to .NET Core 3. Many of these steps will be familiar from Olia's post, but I've tried to differentiate this one by including some additional common dependencies that...

.NET Core.NET.NET Framework
Mar 28, 2019
3
1

Migrating Delegate.BeginInvoke Calls for .NET Core

I recently worked with a couple customers migrating applications to .NET Core that had to make code changes to workaround and methods on delegates not being supported on .NET Core. In this post, we'll look at why these APIs aren't implemented for .NET Core, why their usage isn't caught by the .NET API Portability Analyzer, and how to fix code usi...

.NET Core.NET.NET Framework