IBloggable - implemented
Sign in
|
Join
Home
Contact
RSS
Atom
Search
Tags
.net
ADO.NET
ASP.NET
ASP.NET 4.0
ASP.NET MVC
Autofac
C#
Castle
Database
DynamicProxy
Entity Framework
Guinness World Record
HTML5
IISExpress
JavaScript
jQuery
JSON
LINQ
Markedup
Metro Style Apps
MS Rockstar
MVVM
NDepend
Nuget
OData
Odiogo
Personal
Prism V2
Productivity Power Tools
Razor
Reflector
ReflexIL
Resharper
Service Trace Viewer
Silverlight
SQL CE
Task Parallel Library
Team Foundation Service
TPL Dataflow
Unity
Visual Studio
Visual Studio 2010
Visual Studio 2011
Visual Studio 2012
WCF
WCF Data Services
Web Services
Windows 7
Windows 8
Windows App Certification Kit
WSDL
XAML
Sponsors
advertise here
News
Navigation
Home
Blogs
Archives
March 2013 (1)
January 2013 (2)
December 2012 (1)
November 2012 (4)
October 2012 (3)
September 2012 (7)
August 2012 (1)
May 2012 (2)
April 2012 (2)
March 2012 (1)
October 2011 (2)
September 2011 (3)
August 2011 (4)
July 2011 (1)
June 2011 (6)
May 2011 (3)
April 2011 (2)
March 2011 (4)
February 2011 (6)
January 2011 (3)
December 2010 (2)
November 2010 (1)
October 2010 (1)
September 2010 (2)
August 2010 (2)
July 2010 (6)
June 2010 (2)
May 2010 (4)
April 2010 (9)
March 2010 (4)
February 2010 (2)
January 2010 (1)
December 2009 (4)
November 2009 (7)
October 2009 (7)
February 2011 - Posts
8
Comments
Templated Razor Delegates – Phil Haack
by
nmarun
This post is largely based off of Phil Haack ’s article titled Templated Razor Delegates . I strongly recommend reading this article first. Here’s a sample code for the same, so you can have a look at. I also have a custom type being rendered as a table...
Filed under:
C#
,
ASP.NET MVC
,
.net
,
Razor
6
Comments
Passing a parameter so that it cannot be changed – C#
by
nmarun
I read this requirement of not allowing a user to change the value of a property passed as a parameter to a method. In C++, as far as I could recall (it’s been over 10 yrs, so I had to refresh memory), you can pass ‘const’ to a function parameter and...
Filed under:
C#
,
.net
21
Comments
ASP.NET MVC ‘Extendable-hooks’ – ControllerActionInvoker class
by
nmarun
There’s a class ControllerActionInvoker in ASP.NET MVC. This can be used as one of an hook-points to allow customization of your application. Watching Brad Wilsons’ Advanced MP3 from MVC Conf inspired me to write about this class. What MSDN says: “Represents...
Filed under:
C#
,
ASP.NET MVC
,
.net
3
Comments
WSDL-world vs CLR-world – some differences
by
nmarun
A change in mindset is required when switching between a typical CLR application and a web service application. There are some things in a CLR environment that just don’t add-up in a WSDL arena (and vice-versa). I’m listing some of them here. When I say...
Filed under:
C#
,
.net
,
WCF
,
WSDL
,
Web Services
4
Comments
WCF – interchangeable data-contract types
by
nmarun
In a WSDL based environment, unlike a CLR-world, we pass around the ‘state’ of an object and not the reference of an object. Well firstly, what does ‘state’ mean and does this also mean that we can send a struct where a class is expected (or vice-versa...
Filed under:
C#
,
.net
,
WCF
3
Comments
Hierarchy flattening of interfaces in WCF
by
nmarun
Alright, so say I have my service contract interface as below: 1: [ServiceContract] 2: public interface ILearnWcfService 3: { 4: [OperationContract(Name = "AddInt" )] 5: int Add( int arg1, int arg2); 6: } Say I decided to add another interface...
Filed under:
C#
,
.net
,
WCF
More Posts