Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:io
  3. Cookie class
Cookie
description

Cookie classabstractinterface

Representation of a cookie. For cookies received by the server as Cookieheader values onlyname andvalue properties will be set. When building acookie for the 'set-cookie' header in the server and when receiving cookiesin the client as 'set-cookie' headers all fields can be used.

Constructors

Cookie(Stringname,Stringvalue)
Creates a new cookie setting the name and value.
factory
Cookie.fromSetCookieValue(Stringvalue)
Creates a new cookie by parsing a header value from a 'set-cookie'header.
factory

Properties

domainString?
The domain that the cookie applies to.
getter/setter pair
expiresDateTime?
The time at which the cookie expires.
getter/setter pair
hashCodeint
The hash code for this object.
no setterinherited
httpOnlybool
Whether the cookie is only sent in the HTTP request and is not madeavailable to client side scripts.
getter/setter pair
maxAgeint?
The number of seconds until the cookie expires. A zero or negative valuemeans the cookie has expired.
getter/setter pair
nameString
The name of the cookie.
getter/setter pair
pathString?
The path within thedomain that the cookie applies to.
getter/setter pair
runtimeTypeType
A representation of the runtime type of the object.
no setterinherited
sameSiteSameSite?
Whether the cookie is available from other sites.
getter/setter pair
securebool
Whether to only send this cookie on secure connections.
getter/setter pair
valueString
The value of the cookie.
getter/setter pair

Methods

noSuchMethod(Invocationinvocation)→ dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString()String
Returns the formatted string representation of the cookie. Thestring representation can be used for setting the Cookie or'set-cookie' headers
override

Operators

operator ==(Objectother)bool
The equality operator.
inherited
  1. Dart
  2. dart:io
  3. Cookie class
dart:io library

[8]ページ先頭

©2009-2025 Movatter.jp