C# (2) 썸네일형 리스트형 [error 처리] The JSON value could not be converted to... .net core api 제작 중 client 에서 post 로 객체를 json으로 말아서 전달 했는데 400 error 로 메세지 'The JSON value could not be converted to...' 가 반환된다. 객체 내부에 DateTime Property에서 걸린 것이다. 해당 .net core 3.1 버전이고, 기본지정된 Json 라이브러리가 System.Text.Json 인 것 같아 NewtonSoft Json 라이브러리를 Controller에 추가해 주라는 말이 많다. ConfigureService 함수에 services.AddControllers().AddNewtonsoftJson(); 로 변경 해주었더니.. 또 다시 'IMvcBuilder' does not contain a d.. [예외처리]Thread Exception Propagation 문제 Task가 아닌 Thread를 사용해야 했기 때문에 나온 문제. Task는 예외 전달에 문제가 없지만 다른 스레드에서 주스레드로는 Exceptinon propagation이 일어나지 않음. 자세한 스터디는 further task 로.. Thread thread = new Thread(() => { method(); }); thread.SetApartmentState(ApartmentState.STA); thread.Start(); thread.Join(); 코드와 같이 Thread에서 method 함수를 실행시켜 주었고, method의 예외처리 catch에서는 throw Exception을 해주었던 상황. Thread를 생성해주었던 주스레드 함수에 저 Thread 생성, join 구문도 try괄호에 쌓여.. 이전 1 다음