KLayout Manual: Main Index » Class Index » API reference - Class QNetworkCookieAPI reference - Class QNetworkCookieNotation used in Ruby API documentation Description: Binding of QNetworkCookie Public constructors
Public methods
Public static methods and constants
Detailed description[const] bool !=(const QNetworkCookie other)Description: Method bool QNetworkCookie::operator!=(const QNetworkCookie &other) [const] bool ==(const QNetworkCookie other)Description: Method bool QNetworkCookie::operator==(const QNetworkCookie &other) [static] QNetworkCookie_RawForm FullDescription: Enum constant enum QNetworkCookie::Full [static] QNetworkCookie_RawForm NameAndValueOnlyDescription: Enum constant enum QNetworkCookie::NameAndValueOnly QNetworkCookie assign(const QNetworkCookie other)Description: Method QNetworkCookie & QNetworkCookie::operator=(const QNetworkCookie &other) [const] void assign(const QNetworkCookie other)Description: Assign the contents of another object to self This method assigns the contents of another object to self. This is a deep copy that does not only copy the reference but the actual content. void createDescription: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. void destroyDescription: Explicitly destroy the object Explicitly destroy the object on C++ side if it was owned by the Ruby interpreter. Subsequent access to this object will throw an exception. If the object is not owned by Ruby, this method will do nothing. [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. [const] string domainDescription: Method QString QNetworkCookie::domain() void domain=(string domain)Description: Method void QNetworkCookie::setDomain(const QString &domain) [const] QNetworkCookie dupDescription: Creates a copy of self [const] QDateTime expirationDateDescription: Method QDateTime QNetworkCookie::expirationDate() void expirationDate=(const QDateTime date)Description: Method void QNetworkCookie::setExpirationDate(const QDateTime &date) void httpOnly=(bool enable)Description: Method void QNetworkCookie::setHttpOnly(bool enable) [const] bool isHttpOnlyDescription: Method bool QNetworkCookie::isHttpOnly() [const] bool isHttpOnly?Description: Method bool QNetworkCookie::isHttpOnly() [const] bool isSecureDescription: Method bool QNetworkCookie::isSecure() [const] bool isSecure?Description: Method bool QNetworkCookie::isSecure() [const] bool isSessionCookieDescription: Method bool QNetworkCookie::isSessionCookie() [const] bool isSessionCookie?Description: Method bool QNetworkCookie::isSessionCookie() [const] bool is_const_object?Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. [const] string nameDescription: Method QByteArray QNetworkCookie::name() void name=(string cookieName)Description: Method void QNetworkCookie::setName(const QByteArray &cookieName) [static] new QNetworkCookie new(const QNetworkCookie other)Description: Constructor QNetworkCookie::QNetworkCookie(const QNetworkCookie &other) This method creates an object of class QNetworkCookie. [static] new QNetworkCookie newDescription: Constructor QNetworkCookie::QNetworkCookie(const QByteArray &name, const QByteArray &value) This method creates an object of class QNetworkCookie. [static] new QNetworkCookie new(string name)Description: Constructor QNetworkCookie::QNetworkCookie(const QByteArray &name, const QByteArray &value) This method creates an object of class QNetworkCookie. [static] new QNetworkCookie new(string name,string value)Description: Constructor QNetworkCookie::QNetworkCookie(const QByteArray &name, const QByteArray &value) This method creates an object of class QNetworkCookie. [static] QNetworkCookie[] parseCookies(string cookieString)Description: Static method QList<class QNetworkCookie> QNetworkCookie::parseCookies(const QByteArray &cookieString) This method is static and can be called without an instance. [const] string pathDescription: Method QString QNetworkCookie::path() void path=(string path)Description: Method void QNetworkCookie::setPath(const QString &path) void secure=(bool enable)Description: Method void QNetworkCookie::setSecure(bool enable) void setDomain(string domain)Description: Method void QNetworkCookie::setDomain(const QString &domain) void setExpirationDate(const QDateTime date)Description: Method void QNetworkCookie::setExpirationDate(const QDateTime &date) void setHttpOnly(bool enable)Description: Method void QNetworkCookie::setHttpOnly(bool enable) void setName(string cookieName)Description: Method void QNetworkCookie::setName(const QByteArray &cookieName) void setPath(string path)Description: Method void QNetworkCookie::setPath(const QString &path) void setSecure(bool enable)Description: Method void QNetworkCookie::setSecure(bool enable) void setValue(string value)Description: Method void QNetworkCookie::setValue(const QByteArray &value) [const] string toRawFormDescription: Method QByteArray QNetworkCookie::toRawForm(QNetworkCookie::RawForm form) [const] string toRawForm(const QNetworkCookie_RawForm form)Description: Method QByteArray QNetworkCookie::toRawForm(QNetworkCookie::RawForm form) [const] string valueDescription: Method QByteArray QNetworkCookie::value() void value=(string value)Description: Method void QNetworkCookie::setValue(const QByteArray &value) |