Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- url 파싱
- url파싱
- VisualStudio2019
- create
- MariaDB
- c# for
- restapi
- POST
- UI
- 정처기 실기
- WinForms
- show
- Telerik
- multipart/form-data
- wss 파싱
- 정보처리기사 실기
- C# sprintf
- Git
- 정처기
- git commit vi
- C#
- 프로토타입
- System.IndexOutOfRangeException
- HeidiSQL
- MFC
- drop
- c# 클로저
- postgresql
- IndexOutOfRangeException
- 정보처리기사
Archives
- Today
- Total
목록수신 (1)
달짱달짱
[RestAPI/C#] Multipart/form-data POST 방식 수신
HTTPListener를 통해 POST 로 전송되는 Multiform-data Body 수신 및 Body 가져오기 * Method : POST * Content Type : Multipart/form-data 1. 참조 추가 using System.Net; using System.Net.Http; 2. HttpListener 선언 HttpListener httpListener; 3. HttpListener 객체 생성 if (httpListener == null) { httpListener = new HttpListener(); httpListener.Prefixes.Add(string.Format("http://127.0.0.1:31400/")); serverStart(); //서버 시작 함수 호출 } ..
RestAPI
2022. 5. 4. 17:38