Tag Archives: clientside
Socket communication mechanism on the client side in C#
1. Create the client socket. 2. Connect to the server socket using the Connect method. This sets both the local and remote endpoints for the client socket. 3. Use the Send and Receive methods to communicate with the server socket. … Continue reading
Csharp client side private caching
We can enable private caching if we specified a value of ‘Client’ for the Location attribute of an OutputCache directive on a page. This page would not be saved in the server cache but will be saved in the client’s … Continue reading