Overview   Project   Class   Tree   Index 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Class CefNavigationEntry

CefBaseRefCounted
   |
   +--CefNavigationEntry

   in cef_navigation_entry.h

class CefNavigationEntry
extends CefBaseRefCounted

Class used to represent an entry in navigation history.


Inner Classes, Typedefs, and Enums
typedef CefNavigationEntry::TransitionType
          
 
Method Summary
 virtual CefTime GetCompletionTime()= 0
          Returns the time for the last known successful navigation completion.
 virtual CefString GetDisplayURL()= 0
          Returns a display-friendly version of the URL.
 virtual int GetHttpStatusCode()= 0
          Returns the HTTP status code for the last known successful navigation response.
 virtual CefString GetOriginalURL()= 0
          Returns the original URL that was entered by the user before any redirects.
 virtual CefRefPtr< CefSSLStatus > GetSSLStatus()= 0
          Returns the SSL information for this navigation entry.
 virtual CefString GetTitle()= 0
          Returns the title set by the page.
 virtual CefNavigationEntry::TransitionType GetTransitionType()= 0
          Returns the transition type which indicates what the user did to move to this page from the previous page.
 virtual CefString GetURL()= 0
          Returns the actual URL of the page.
 virtual bool HasPostData()= 0
          Returns true if this navigation includes post data.
 virtual bool IsValid()= 0
          Returns true if this object is valid.
   
Methods inherited from class CefBaseRefCounted
AddRef, Release, HasOneRef, HasAtLeastOneRef
 

Method Detail

GetCompletionTime

public virtual CefTime GetCompletionTime()= 0;
Returns the time for the last known successful navigation completion. A navigation may be completed more than once if the page is reloaded. May be 0 if the navigation has not yet completed.

GetDisplayURL

public virtual CefString GetDisplayURL()= 0;
Returns a display-friendly version of the URL.

GetHttpStatusCode

public virtual int GetHttpStatusCode()= 0;
Returns the HTTP status code for the last known successful navigation response. May be 0 if the response has not yet been received or if the navigation has not yet completed.

GetOriginalURL

public virtual CefString GetOriginalURL()= 0;
Returns the original URL that was entered by the user before any redirects.

GetSSLStatus

public virtual CefRefPtr< CefSSLStatus > GetSSLStatus()= 0;
Returns the SSL information for this navigation entry.

GetTitle

public virtual CefString GetTitle()= 0;
Returns the title set by the page. This value may be empty.

GetTransitionType

public virtual CefNavigationEntry::TransitionType GetTransitionType()= 0;
Returns the transition type which indicates what the user did to move to this page from the previous page.

GetURL

public virtual CefString GetURL()= 0;
Returns the actual URL of the page. For some pages this may be data: URL or similar. Use GetDisplayURL() to return a display-friendly version.

HasPostData

public virtual bool HasPostData()= 0;
Returns true if this navigation includes post data.

IsValid

public virtual bool IsValid()= 0;
Returns true if this object is valid. Do not call any other methods if this function returns false.

 Overview   Project   Class   Tree   Index 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

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