MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / Copy

Method Copy

cpp/iedriver/BrowserCookie.cpp:106–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104}
105
106BrowserCookie BrowserCookie::Copy(void) const {
107 BrowserCookie destination_cookie;
108 destination_cookie.set_name(this->name_);
109 destination_cookie.set_value(this->value_);
110 destination_cookie.set_domain(this->domain_);
111 destination_cookie.set_path(this->path_);
112 destination_cookie.set_is_secure(this->is_secure_);
113 destination_cookie.set_is_httponly(this->is_httponly_);
114 destination_cookie.set_expiration_time(this->expiration_time_);
115 return destination_cookie;
116}
117
118}

Callers 11

ExecuteMethod · 0.45
set_resultMethod · 0.45
ExecuteToJsonMethodMethod · 0.45
DeleteCookieMethod · 0.45
RecurseCookiePathMethod · 0.45
RecurseCookieDomainMethod · 0.45

Calls 7

set_nameMethod · 0.80
set_valueMethod · 0.80
set_domainMethod · 0.80
set_pathMethod · 0.80
set_is_secureMethod · 0.80
set_is_httponlyMethod · 0.80
set_expiration_timeMethod · 0.80

Tested by

no test coverage detected