, 우리는 지금처럼 <configSections>
요소를 사용하여 사용자 지정 구성 섹션을 만들 수 있습니다 위DictionarySectionHandler와 NameValueSectionHandler 사이에 차이점이 있습니까? .NET에서
<configuration>
<configSections>
<section name="dictionarySample"
type="System.Configuration.DictionarySectionHandler"/>
<section name="nameValueSample"
type="System.Configuration.NameValueSectionHandler" />
</configSections>
<dictionarySample>
<add key="key1"
value="value1"/>
</dictionarySample>
<nameValueSample>
<add key="key2"
value="value2" />
</nameValueSample>
</configuration>
, 나는 두 개의 섹션을 정의하고있다. 유형이 DictionarySectionHandler
이고 유형이 NameValueSectionHandler
입니다.
내가 알 수있는 한,이 두 핸들러는 똑같은 방식으로 사용되고 동일한 구성 섹션을 생성합니다.
그래서 차이점이 있습니까? 아니면 서로 바꾸어 사용할 수 있습니까?