Passing by value & passing by reference in C# using Reference Types
Case 1: Both are samepublic class Program{ static void Main() { Employee employee; employee = new Employee(); PopulateEmployee(employee); …
A proper & well organized listing of IT companies
Case 1: Both are samepublic class Program{ static void Main() { Employee employee; employee = new Employee(); PopulateEmployee(employee); …
Just follow below two steps:Add missing HTTPS binding in IIS. Go to IIS > Website > Bindings > Add Binding. See below screenshot.Now, Add serviceBehaviours in web.config file like…
Just add below section in your web.config file.<system.serviceModel> <serviceHostingEnvironment multipleSiteBindingsEnabled="true"> </serviceHostingEnvironment></system.serviceModel>…
In this blog, I am sharing the key points which I noted while learning the basics & getting started points for writing the database unit test case for SQL Server.Installation: ○ tSQLt must be…
To install Materialize in your angular app. You just need to follow 2 steps.Install following node package in your application: npm install materialize-css --saveOpen angular.json file & add below…
Root Cause:It seems that the files which you want to ignore are already committed in repository. And .gitignore doesn't actually ignore the files which are already committed into the…
As Web API (Rest API) is stateless, so there should be some mechanism by which a server can identify the user in every request. So to enable a user's identity to a web-server, we pass some data in…
Implementing Token Based Authentication in Web API 2 using OWIN. Today, we are going to talk about how can we secure our Web API. So we will learn how can we secure our Web APIs by implementing Token Based authentication and authorization in them.…
You might have heard these terms very often – Encryption, Hashing & Salting. In this post, I have tried to explain to you all these terms in a very easy way.EncryptionEncryption is the process of…
Solution: System.BadImageFormatException: Could not load file or assembly. Make sure that you are using the correct tool path (i.e. installutil.exe) for installing the application. This issue normally occurs when we attempt to use 32 bit (/platform:x86) version of tool to…