Filed under .Net Development

Comparison Of Different Channels In WCF

Few months back, we did some measurement of different WCF channel to get the precise idea about the performance in the different channel stack. Following is the definition of the environment: WCF service and client is hosted in the same Windows 2003 Server. 537 Users exist in the system. WCF service is hosted in Windows … Continue reading »

Inside Static Contructor (.cctor)

General purpose of a Static Constructor( also known as Type Constructor or Class Constructor) is used to initialize static members of the type or performing some operations which seems to be precondition for performing any operation on this type/instance of the type . In addition, as mentioned in MSDN documentation, it’s useful for creating wrapper … Continue reading »