C# 클래스 Amazon.Runtime.Internal.UnityWebRequestWrapper

This class is used to wrap around UnityEngine.Experimental.Networking.UnityWebRequest so that we can be backward compatible with unity 4.6
상속: IDisposable
파일 보기 프로젝트 열기: aws/aws-sdk-net 1 사용 예제들

Private Properties

프로퍼티 타입 설명
UnityWebRequestWrapper System

공개 메소드들

메소드 설명
Dispose ( ) : void
Send ( ) : AsyncOperation

Make the http call

SetRequestHeader ( string key, string value ) : void

Set the request Header

UnityWebRequestWrapper ( string url, string method ) : System

Create an instance of UnityWebRequestWrapper

UnityWebRequestWrapper ( string url, string method, DownloadHandlerBufferWrapper downloadHandler, UploadHandlerRawWrapper uploadHandler ) : System

Create an instance of UnityWebRequestWrapper

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

비공개 메소드들

메소드 설명
UnityWebRequestWrapper ( ) : System

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

Send() 공개 메소드

Make the http call
public Send ( ) : AsyncOperation
리턴 UnityEngine.AsyncOperation

SetRequestHeader() 공개 메소드

Set the request Header
public SetRequestHeader ( string key, string value ) : void
key string the header key
value string the header value
리턴 void

UnityWebRequestWrapper() 공개 메소드

Create an instance of UnityWebRequestWrapper
public UnityWebRequestWrapper ( string url, string method ) : System
url string Url of the request
method string The HTTP Methods
리턴 System

UnityWebRequestWrapper() 공개 메소드

Create an instance of UnityWebRequestWrapper
public UnityWebRequestWrapper ( string url, string method, DownloadHandlerBufferWrapper downloadHandler, UploadHandlerRawWrapper uploadHandler ) : System
url string Url of the request
method string The HTTP Methods
downloadHandler DownloadHandlerBufferWrapper Instance of
uploadHandler UploadHandlerRawWrapper Instance of
리턴 System