C# 클래스 BeardedManStudios.Network.HTTP

파일 보기 프로젝트 열기: drakelinglabs/unityarmada

공개 프로퍼티들

프로퍼티 타입 설명
contentType ContentType
requestType RequestType

공개 메소드들

메소드 설명
Delete ( Action callback ) : void

Delete a response to the HTTP

Get ( Action callback ) : void

Get a response from the HTTP

GetImage ( Action callback ) : void

Get an image response to be used in the game

GetImageResponse ( object arg ) : byte[]
GetImageResponse ( byte parameters ) : void

Gets an image response from HTTP request as a byte[]

HTTP ( string url, string stringHeaders = null ) : System

Constructor for a passed in URL

Post ( Action callback, string>.Dictionary parameters ) : void

Post a message to the URL with parameters

Post ( Action callback, string postString ) : void

Post a message to the URL

Put ( Action callback ) : void

Put a response to the HTTP

비공개 메소드들

메소드 설명
GetWebResponse ( byte parameters ) : object
GetWebResponse ( byte parameters, Action callback ) : void
Send ( Action callback, byte argument = null ) : void

메소드 상세

Delete() 공개 메소드

Delete a response to the HTTP
public Delete ( Action callback ) : void
callback Action
리턴 void

Get() 공개 메소드

Get a response from the HTTP
public Get ( Action callback ) : void
callback Action
리턴 void

GetImage() 공개 메소드

Get an image response to be used in the game
public GetImage ( Action callback ) : void
callback Action
리턴 void

GetImageResponse() 공개 메소드

public GetImageResponse ( object arg ) : byte[]
arg object
리턴 byte[]

GetImageResponse() 공개 메소드

Gets an image response from HTTP request as a byte[]
public GetImageResponse ( byte parameters ) : void
parameters byte
리턴 void

HTTP() 공개 메소드

Constructor for a passed in URL
public HTTP ( string url, string stringHeaders = null ) : System
url string URL to be pulling data from
stringHeaders string
리턴 System

Post() 공개 메소드

Post a message to the URL with parameters
public Post ( Action callback, string>.Dictionary parameters ) : void
callback Action
parameters string>.Dictionary Message to post with parameters
리턴 void

Post() 공개 메소드

Post a message to the URL
public Post ( Action callback, string postString ) : void
callback Action
postString string Message to post
리턴 void

Put() 공개 메소드

Put a response to the HTTP
public Put ( Action callback ) : void
callback Action
리턴 void

프로퍼티 상세

contentType 공개적으로 프로퍼티

The type of content you are expecting from this url
public ContentType contentType
리턴 ContentType

requestType 공개적으로 프로퍼티

The type of HTTP request this will be
public RequestType requestType
리턴 RequestType