C# Class HTTP.Response

ファイルを表示 Open project: wids-eria/tf_client Class Usage Examples

Public Properties

Property Type Description
bytes byte[]
message string
status int

Protected Properties

Property Type Description
unchunkedData List

Public Methods

Method Description
AddHeader ( string name, string value ) : void
GetHeader ( string name ) : string
GetHeaders ( string name ) : List
ReadFromStream ( Stream inputStream ) : void

Private Methods

Method Description
ReadKeyValue ( Stream stream ) : string[]
ReadLine ( Stream stream ) : string
UnZip ( MemoryStream output ) : byte[]
UnZip ( byte output ) : byte[]

Method Details

AddHeader() public method

public AddHeader ( string name, string value ) : void
name string
value string
return void

GetHeader() public method

public GetHeader ( string name ) : string
name string
return string

GetHeaders() public method

public GetHeaders ( string name ) : List
name string
return List

ReadFromStream() public method

public ReadFromStream ( Stream inputStream ) : void
inputStream Stream
return void

Property Details

bytes public_oe property

public byte[] bytes
return byte[]

message public_oe property

public string message
return string

status public_oe property

public int status
return int

unchunkedData protected_oe property

protected List unchunkedData
return List