Category Archives: .NET Framework

Technical Advantages of Taking Microsoft C# Exam

Firstly, I must say that it is pretty easy to clear exam with good marks WITHOUT implementing a single line of code. However, if you plan to take exam to increase your proficiency then you got to try out the … Continue reading

Posted in .NET Framework | 1 Comment

Bypassing Method Level Security

Here is an excerpt from the book I was studying: ———————————————————————————————————————- You can use the Assert method to declare that a method has permission to access the specified resource. This causes any Demand stack walks to cease checking for permission … Continue reading

Posted in .NET Framework | 1 Comment

Method level security!!

I have come across another exotic feature of .NET – Security. Well the unusual things are: – We can actually protect our methods from being accessed by unauthorized users! i.e. the method wont execute if an unauthorized user somehow is able … Continue reading

Posted in .NET Framework | 1 Comment

Asynchronous Functions

Friendz Today I found a wonderful feature in .NET – that any method can be made asynchronous! Here is the link: ms-help://MS.NETFrameworkSDKv1.1/ cpguidenf/html/cpovrasynchronousprogrammingoverview.htm If you have .NET 1.1 installed then copy and paste this link in internet explorer this link … Continue reading

Posted in .NET Framework | 2 Comments