Get maxRequestLength value from specific location

2019-09-19 08:01发布

I have several different maxRequestLengths set for different location paths. How do I get the value of the specific location path that I am looking for?

Here is what is in config: enter image description here

1条回答
倾城 Initia
2楼-- · 2019-09-19 08:47

Check this out

using System;
using System.Collections;
using System.Configuration;

class DisplayLocationInfo
{
    static void Main(string[] args)
    {
        Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
        ConfigurationLocationCollection myLocationCollection = config.Locations;
        foreach (ConfigurationLocation myLocation in myLocationCollection)
        {
            Console.WriteLine("Location Path: {0}", myLocation.Path);
            Configuration myLocationConfiguration = myLocation.OpenConfiguration();
            Console.WriteLine("Location Configuration File Path: {0}", myLocationConfiguration.FilePath);
        }
        Console.WriteLine("Done...");
        Console.ReadLine();
    }
}

https://msdn.microsoft.com/en-us/library/system.configuration.configurationlocation(v=vs.100).aspx

查看更多
登录 后发表回答