October 2008 - Posts

1
Comments

Using Reflection and Type.GetType by Kiyoshi

Recently I had to use Type.GetType to use Remote Objects in IIS (yea its old) and I kept running into a problem with Type.GetType("...") returning null. So after trying and trying and rechecking my spelling over and over, I discovered this article...
0
Comments

WCF - Using WebHttpBinding for REST services by Kiyoshi

You can use WebHttpBinding to have REST endpoints in your WCF application to expose simple public service calls.  Use a UriTemplate in your service contract and a WebHttpBinding endpoint.  Here's an example...   (IContractName.cs) namespace...
Filed under:
1
Comments

Get an Enum value from a string by Kiyoshi

I love to use enumerated datatypes for programming.  This code snippet is really useful for getting an enum value from it's name rather than it's integer index. The original article was here: http://blog.paranoidferret.com/index.php/2007/09/17/csharp...
More Posts