THRIFT-4492 protected ExceptionType type member of TApplicationException cannot be accessed
Client: C#
Patch: Jens Geyer

This closes #1493
diff --git a/lib/csharp/src/TApplicationException.cs b/lib/csharp/src/TApplicationException.cs
index 4c0d3a3..409aa4d 100644
--- a/lib/csharp/src/TApplicationException.cs
+++ b/lib/csharp/src/TApplicationException.cs
@@ -137,5 +137,10 @@
             InvalidProtocol,
             UnsupportedClientType
         }
+
+        public ExceptionType Type
+        {
+            get { return type; }
+        }
     }
 }