Explain 3 types of configuration files in windows application in .NET

Explain 3 types of configuration files in windows application in .NET

- Application Configuration: They contain configuration settings specific to applications. These files provide a way of overriding the metadata in assemblies without having to rebuild the application.

- Machine Configuration Files:Machine Configuration allows to provide settings for all the applications on a computer. The name of machine configuration file is machine.config. The location of this file is
%SystemRoot%\Microsoft.NET\Framework\\CONFIG\.

- Security configuration files: It contains information that describes the permissions and rights. The information in this files can be related to code access security system.

Ways to optimize the performance of a windows application
Ways to optimize the performance of a windows application - Knowing when to use StringBuilder...
What is Code-Access security? - C#.NET
What is Code-Access security? - Code access security is a mechanism that helps limit the access to the code by protecting...
What is Role-based security? - C#.NET
What is Role-based security? - Application that provide access to its data based on credentials check, verify the user’s role...
Post your comment