C# Class Amazon.Runtime.Internal.Transform.UnityWebResponseData

Implementation of response interface for WWW API.
Inheritance: IWebResponseData, IHttpResponseBody
Mostrar archivo Open project: aws/aws-sdk-net

Public Methods

Method Description
Dispose ( ) : void

Disposes the response stream.

GetHeaderNames ( ) : string[]
GetHeaderValue ( string name ) : string
IsHeaderPresent ( string headerName ) : bool
OpenResponse ( ) : Stream

Returns a stream that allows reading the response body.

UnityWebResponseData ( UnityWebRequestWrapper unityWebRequest ) : Amazon.Util
UnityWebResponseData ( WWW wwwRequest ) : Amazon.Util

The constructor for UnityWebResponseData.

Private Methods

Method Description
CopyHeaderValues ( string>.Dictionary headers ) : void

Method Details

Dispose() public method

Disposes the response stream.
public Dispose ( ) : void
return void

GetHeaderNames() public method

public GetHeaderNames ( ) : string[]
return string[]

GetHeaderValue() public method

public GetHeaderValue ( string name ) : string
name string
return string

IsHeaderPresent() public method

public IsHeaderPresent ( string headerName ) : bool
headerName string
return bool

OpenResponse() public method

Returns a stream that allows reading the response body.
public OpenResponse ( ) : Stream
return Stream

UnityWebResponseData() public method

public UnityWebResponseData ( UnityWebRequestWrapper unityWebRequest ) : Amazon.Util
unityWebRequest UnityWebRequestWrapper
return Amazon.Util

UnityWebResponseData() public method

The constructor for UnityWebResponseData.
public UnityWebResponseData ( WWW wwwRequest ) : Amazon.Util
wwwRequest UnityEngine.WWW /// An instance of WWW after the web request has /// completed and response fields are set ///
return Amazon.Util