C# 클래스 Nohal.Redmine.MultipartData

Helper class for constructing the multipart/form-data POST requests
파일 보기 프로젝트 열기: bdrhoa/redmine-client 1 사용 예제들

공개 메소드들

메소드 설명
AddFile ( string name, string fileName ) : void

Adds a file to the post request

AddValue ( string name, string value ) : void

Adds new form field name/value pair

비공개 메소드들

메소드 설명
Finish ( ) : void

Finishes the creation of the request

메소드 상세

AddFile() 공개 메소드

Adds a file to the post request
public AddFile ( string name, string fileName ) : void
name string The name of the field
fileName string The file path
리턴 void

AddValue() 공개 메소드

Adds new form field name/value pair
public AddValue ( string name, string value ) : void
name string The name of the field
value string Tha value of the field
리턴 void