The UriTemplate is a new class in the .NET Framework 3.5
It provides a nice convenient way to parse variables from Uri's such that
UriTemplate temp = new UriTemplate("account/{accountid}");
Uri requestUri = temp.BindByPosition(baseUri, id.ToString());
Will give you http://localhost/account/100 Nice!
However, ...