C# 클래스 ApexLumia.HTTPRequests

파일 보기 프로젝트 열기: ApexHAB/apex-lumia 1 사용 예제들

공개 메소드들

메소드 설명
getRequestAsync ( string url ) : Task

Async: Make an HTTP GET request to a URL (with no extra parameters)

postRequestAsync ( string url, string postData, string authorization = "", bool Expect100Continue = true ) : Task
putRequestAsync ( string url, string putData ) : Task

Async: Make an HTTP PUT request to a URL with data

메소드 상세

getRequestAsync() 공개 정적인 메소드

Async: Make an HTTP GET request to a URL (with no extra parameters)
public static getRequestAsync ( string url ) : Task
url string The URL you would like to send a request to.
리턴 Task

postRequestAsync() 공개 정적인 메소드

public static postRequestAsync ( string url, string postData, string authorization = "", bool Expect100Continue = true ) : Task
url string
postData string
authorization string
Expect100Continue bool
리턴 Task

putRequestAsync() 공개 정적인 메소드

Async: Make an HTTP PUT request to a URL with data
public static putRequestAsync ( string url, string putData ) : Task
url string The URL you would like to send a request to.
putData string The data you would like to send to the URL (e.g. JSON)
리턴 Task