Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 439
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Class CefResponse

CefBase
   |
   +--CefResponse

   in cef.h

class CefResponse
extends CefBase

Class used to represent a web response. The methods of this class may be called on any thread.


Inner Classes, Typedefs, and Enums
typedef CefResponse::HeaderMap
          
 
Method Summary
 virtual CefString GetHeader( const CefString& name )= 0
          Get the value for the specified response header field.
 virtual void GetHeaderMap( CefResponse::HeaderMap& headerMap )= 0
          Get all response header fields.
 virtual CefString GetMimeType()= 0
          Get the response mime type.
 virtual int GetStatus()= 0
          Get the response status code.
 virtual CefString GetStatusText()= 0
          Get the response status text.
 virtual void SetHeaderMap( const CefResponse::HeaderMap& headerMap )= 0
          Set all response header fields.
 virtual void SetMimeType( const CefString& mimeType )= 0
          Set the response mime type.
 virtual void SetStatus( int status )= 0
          Set the response status code.
 virtual void SetStatusText( const CefString& statusText )= 0
          Set the response status text.
   
Methods inherited from class CefBase
AddRef, Release, GetRefCt
 

Method Detail

GetHeader

public virtual CefString GetHeader( const CefString& name )= 0;
Get the value for the specified response header field.

GetHeaderMap

public virtual void GetHeaderMap( CefResponse::HeaderMap& headerMap )= 0;
Get all response header fields.

GetMimeType

public virtual CefString GetMimeType()= 0;
Get the response mime type.

GetStatus

public virtual int GetStatus()= 0;
Get the response status code.

GetStatusText

public virtual CefString GetStatusText()= 0;
Get the response status text.

SetHeaderMap

public virtual void SetHeaderMap( const CefResponse::HeaderMap& headerMap )= 0;
Set all response header fields.

SetMimeType

public virtual void SetMimeType( const CefString& mimeType )= 0;
Set the response mime type.

SetStatus

public virtual void SetStatus( int status )= 0;
Set the response status code.

SetStatusText

public virtual void SetStatusText( const CefString& statusText )= 0;
Set the response status text.

 Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 439
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt