«configurationmanager» 태그된 질문

15
AppSettings는 .config 파일에서 가치를 얻습니다.
구성 파일의 값에 액세스 할 수 없습니다. Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); var clientsFilePath = config.AppSettings.Settings["ClientsFilePath"].Value; // the second line gets a NullReferenceException .config 파일 : <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <!-- ... --> <add key="ClientsFilePath" value="filepath"/> <!-- ... --> </appSettings> </configuration> 어떻게해야하는지 제안이 있습니까?

8
활성 app.config 파일의 경로를 찾는 방법은 무엇입니까?
이 예외 처리기를 끝내려고합니다. if (ConfigurationManager.ConnectionStrings["ConnectionString"]==null) { string pathOfActiveConfigFile = ...? throw new ConfigurationErrorsException( "You either forgot to set the connection string, or " + "you're using a unit test framework that looks for "+ "the config file in strange places, update this file : " + pathOfActiveConfigFile); } 이 …

9
appSettings 키가 있는지 확인하는 방법?
응용 프로그램 설정을 사용할 수 있는지 확인하려면 어떻게합니까? 즉 app.config <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key ="someKey" value="someValue"/> </appSettings> </configuration> 그리고 코드 파일에서 if (ConfigurationManager.AppSettings.ContainsKey("someKey")) { // Do Something }else{ // Do Something Else }

4
WebConfigurationManager와 ConfigurationManager의 차이점은 무엇입니까?
WebConfigurationManager과 의 차이점은 무엇입니까 ConfigurationManager? 언제 다른 것을 사용해야합니까? 업데이트 됨 방금을 보았고 WebConfigurationManager어떤 이유로 든 ConfigurationManager(배열과 같이) 에서처럼 연결 문자열에 액세스 할 수 없습니다 . MS가 왜 이렇게 만들 었는지 아무도 말해 줄 수 있습니까? .NET Framework를 사용하여 필요한 연결 문자열을 얻는 것이 고통스러운 것 같습니다 WebConfigurationManager. CAVEAT와 함께 …

9
ConfigurationManager.AppSettings-수정 및 저장 방법
질문하기에는 너무 사소하게 들릴 수 있으며 기사에서 제안한 것과 동일한 작업을 수행하지만 예상대로 작동하지 않습니다. 누군가가 나를 올바른 방향으로 안내 할 수 있기를 바랍니다. AppSettings별로 사용자 설정을 저장하고 싶습니다. Winform이 닫히면 다음을 트리거합니다. conf.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); if (ConfigurationManager.AppSettings["IntegrateWithPerforce"] != null) ConfigurationManager.AppSettings["IntegrateWithPerforce"] = e.Payload.IntegrateCheckBox.ToString(); else config.AppSettings.Settings.Add("IntegrateWithPerforce", e.Payload.IntegrateCheckBox.ToString()); config.Save(ConfigurationSaveMode.Modified); 따라서 항목이 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.