How to check if a section in MVC Core configuration file exist?

MRB

How can I check if a specific section in loaded ASP.NET Core configuration file exist?

I have a JSON configuration file that I load it in Startup class via ConfigurationBuilder.AddJsonFile method.

This JSON file is an array with this layout:

{
   "Url": "",
   "Regex": [ "", "" ],
   "Keys": {
     "Title": "",
     "Description": "",
     "Keywords": [ "" ]
   }
}

But some of them doesn't have Keys. I tried to check return type of section.GetSection("Keys") against null, But it doesn't return null even if Keys section isn't present.

Dmitry

Use GetChildren method:

var keysExists = Configuration.GetChildren().Any(x => x.Key == "Keys"));

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to check whether file exist or not in given URL?

分類Dev

how to check if date and string exist in text file

分類Dev

How to check whether the file exist in HDFS location, using oozie?

分類Dev

How to check for 30sec if file in folder exist?

分類Dev

C# - How to Determine if a Configuration Section exists in a mapped EXE configuration file?

分類Dev

How do I check that a configuration file has been read?

分類Dev

How to check if XML value exist?

分類Dev

Check if all of multiple strings or regexes exist in a file

分類Dev

How to make an IOptions section optional in .NET Core?

分類Dev

how can i check if event exist on calendar

分類Dev

How to check if a value/property exist in JSON data

分類Dev

How to check if a value/property exist in JSON data

分類Dev

sql: How to check a zipcode is exist in zipcode range

分類Dev

how to check email exist in rails, devise gem

分類Dev

ASP.NET MVC AdminPanel and Front Section File Structure

分類Dev

s3 check if file exist by getting metadata

分類Dev

Check whether files in a file list exist in a certain directory

分類Dev

Check upload file for virus in MVC3

分類Dev

How to make DBMS check all conditions in WHERE section?

分類Dev

How can I stop ASP.NET Core 2.0 MVC minification from modifying a specific file?

分類Dev

ASP.NET Core MVCの「@section」に相当しますか?

分類Dev

How can I check whether a option already exist in select by JQuery

分類Dev

How to check if one element is exist under a form in jQuery

分類Dev

How to check whether any particular partition exist or not in HIVE

分類Dev

How to check if an index exist in neo4j cypher

分類Dev

How to check if an index exist in neo4j cypher

分類Dev

How to check if multiple conditions strings exist in the csv using BufferedReader?

分類Dev

How to check entered value is exist or not using Jquery or javascript

分類Dev

Could not find file 'C:\SomePath\Oracle.DataAccess.Common.Configuration.Section.xsd' when connecting to Oracle server

Related 関連記事

  1. 1

    How to check whether file exist or not in given URL?

  2. 2

    how to check if date and string exist in text file

  3. 3

    How to check whether the file exist in HDFS location, using oozie?

  4. 4

    How to check for 30sec if file in folder exist?

  5. 5

    C# - How to Determine if a Configuration Section exists in a mapped EXE configuration file?

  6. 6

    How do I check that a configuration file has been read?

  7. 7

    How to check if XML value exist?

  8. 8

    Check if all of multiple strings or regexes exist in a file

  9. 9

    How to make an IOptions section optional in .NET Core?

  10. 10

    how can i check if event exist on calendar

  11. 11

    How to check if a value/property exist in JSON data

  12. 12

    How to check if a value/property exist in JSON data

  13. 13

    sql: How to check a zipcode is exist in zipcode range

  14. 14

    how to check email exist in rails, devise gem

  15. 15

    ASP.NET MVC AdminPanel and Front Section File Structure

  16. 16

    s3 check if file exist by getting metadata

  17. 17

    Check whether files in a file list exist in a certain directory

  18. 18

    Check upload file for virus in MVC3

  19. 19

    How to make DBMS check all conditions in WHERE section?

  20. 20

    How can I stop ASP.NET Core 2.0 MVC minification from modifying a specific file?

  21. 21

    ASP.NET Core MVCの「@section」に相当しますか?

  22. 22

    How can I check whether a option already exist in select by JQuery

  23. 23

    How to check if one element is exist under a form in jQuery

  24. 24

    How to check whether any particular partition exist or not in HIVE

  25. 25

    How to check if an index exist in neo4j cypher

  26. 26

    How to check if an index exist in neo4j cypher

  27. 27

    How to check if multiple conditions strings exist in the csv using BufferedReader?

  28. 28

    How to check entered value is exist or not using Jquery or javascript

  29. 29

    Could not find file 'C:\SomePath\Oracle.DataAccess.Common.Configuration.Section.xsd' when connecting to Oracle server

ホットタグ

アーカイブ