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 |
Tags
- 정보처리기사
- UI
- multipart/form-data
- System.IndexOutOfRangeException
- 정보처리기사 실기
- MariaDB
- POST
- wss 파싱
- VisualStudio2019
- show
- 정처기 실기
- Git
- c# 클로저
- HeidiSQL
- 정처기
- restapi
- url파싱
- git commit vi
- MFC
- url 파싱
- 프로토타입
- C# sprintf
- C#
- c# for
- IndexOutOfRangeException
- Telerik
- create
- drop
- WinForms
- postgresql
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