API reference - Class QNetworkRequestNotation used in Ruby API documentation Description: Binding of QNetworkRequest Sub-classes: Attribute, KnownHeaders
Public constructors
Public methods
Public static methods and constants
Deprecated methods (protected, public, static, non-static and constructors)
Detailed description[const] bool !=(const QNetworkRequest other)Description: Method bool QNetworkRequest::operator!=(const QNetworkRequest &other) [const] bool ==(const QNetworkRequest other)Description: Method bool QNetworkRequest::operator==(const QNetworkRequest &other) [static,const] new QNetworkRequest_Attribute ptr CacheLoadControlAttributeDescription: Enum constant QNetworkRequest::CacheLoadControlAttribute [static,const] new QNetworkRequest_Attribute ptr CacheSaveControlAttributeDescription: Enum constant QNetworkRequest::CacheSaveControlAttribute [static,const] new QNetworkRequest_Attribute ptr ConnectionEncryptedAttributeDescription: Enum constant QNetworkRequest::ConnectionEncryptedAttribute [static,const] new QNetworkRequest_KnownHeaders ptr ContentLengthHeaderDescription: Enum constant QNetworkRequest::ContentLengthHeader [static,const] new QNetworkRequest_KnownHeaders ptr ContentTypeHeaderDescription: Enum constant QNetworkRequest::ContentTypeHeader [static,const] new QNetworkRequest_KnownHeaders ptr CookieHeaderDescription: Enum constant QNetworkRequest::CookieHeader [static,const] new QNetworkRequest_Attribute ptr DoNotBufferUploadDataAttributeDescription: Enum constant QNetworkRequest::DoNotBufferUploadDataAttribute [static,const] new QNetworkRequest_Attribute ptr HttpPipeliningAllowedAttributeDescription: Enum constant QNetworkRequest::HttpPipeliningAllowedAttribute [static,const] new QNetworkRequest_Attribute ptr HttpPipeliningWasUsedAttributeDescription: Enum constant QNetworkRequest::HttpPipeliningWasUsedAttribute [static,const] new QNetworkRequest_Attribute ptr HttpReasonPhraseAttributeDescription: Enum constant QNetworkRequest::HttpReasonPhraseAttribute [static,const] new QNetworkRequest_Attribute ptr HttpStatusCodeAttributeDescription: Enum constant QNetworkRequest::HttpStatusCodeAttribute [static,const] new QNetworkRequest_KnownHeaders ptr LastModifiedHeaderDescription: Enum constant QNetworkRequest::LastModifiedHeader [static,const] new QNetworkRequest_KnownHeaders ptr LocationHeaderDescription: Enum constant QNetworkRequest::LocationHeader [static,const] new QNetworkRequest_Attribute ptr RedirectionTargetAttributeDescription: Enum constant QNetworkRequest::RedirectionTargetAttribute [static,const] new QNetworkRequest_KnownHeaders ptr SetCookieHeaderDescription: Enum constant QNetworkRequest::SetCookieHeader [static,const] new QNetworkRequest_Attribute ptr SourceIsFromCacheAttributeDescription: Enum constant QNetworkRequest::SourceIsFromCacheAttribute [static,const] new QNetworkRequest_Attribute ptr UserDescription: Enum constant QNetworkRequest::User [static,const] new QNetworkRequest_Attribute ptr UserMaxDescription: Enum constant QNetworkRequest::UserMax void _assign(const QNetworkRequest other)Description: Assigns another object to self 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 destroys the object Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, 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] 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. void _manageDescription: Marks the object as managed by the script side. After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. Usually it's not required to call this method. It has been introduced in version 0.24. void _unmanageDescription: Marks the object as no longer owned by the script side. Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. Usually it's not required to call this method. It has been introduced in version 0.24. QNetworkRequest assign(const QNetworkRequest other)Description: Method QNetworkRequest &QNetworkRequest::operator=(const QNetworkRequest &other) [const] QVariant attribute(const QNetworkRequest_Attribute code,const QVariant defaultValue = QVariant())Description: Method QVariant QNetworkRequest::attribute(QNetworkRequest::Attribute code, const QVariant &defaultValue) void createDescription: Ensures the C++ object is created Use of this method is deprecated. Use _create instead void destroyDescription: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed Use of this method is deprecated. Use _destroyed? instead [const] new QNetworkRequest ptr dupDescription: Creates a copy of self [const] bool hasRawHeader(string headerName)Description: Method bool QNetworkRequest::hasRawHeader(const QByteArray &headerName) [const] QVariant header(const QNetworkRequest_KnownHeaders header)Description: Method QVariant QNetworkRequest::header(QNetworkRequest::KnownHeaders header) [const] bool is_const_object?Description: Returns a value indicating whether the reference is a const reference Use of this method is deprecated. Use _is_const_object? instead [static] new QNetworkRequest new(const QUrl url = QUrl())Description: Constructor QNetworkRequest::QNetworkRequest(const QUrl &url) This method creates an object of class QNetworkRequest. Python specific notes:This method is the default initializer of the object [static] new QNetworkRequest new(const QNetworkRequest other)Description: Constructor QNetworkRequest::QNetworkRequest(const QNetworkRequest &other) This method creates an object of class QNetworkRequest. Python specific notes:This method is the default initializer of the object [const] QObject ptr originatingObjectDescription: Method QObject *QNetworkRequest::originatingObject() Python specific notes:The object exposes a readable attribute 'originatingObject'. This is the getter. void originatingObject=(QObject ptr object)Description: Method void QNetworkRequest::setOriginatingObject(QObject *object) Python specific notes:The object exposes a writable attribute 'originatingObject'. This is the setter. [const] string rawHeader(string headerName)Description: Method QByteArray QNetworkRequest::rawHeader(const QByteArray &headerName) [const] string[] rawHeaderListDescription: Method QList<QByteArray> QNetworkRequest::rawHeaderList() void setAttribute(const QNetworkRequest_Attribute code,const QVariant value)Description: Method void QNetworkRequest::setAttribute(QNetworkRequest::Attribute code, const QVariant &value) void setHeader(const QNetworkRequest_KnownHeaders header,const QVariant value)Description: Method void QNetworkRequest::setHeader(QNetworkRequest::KnownHeaders header, const QVariant &value) void setOriginatingObject(QObject ptr object)Description: Method void QNetworkRequest::setOriginatingObject(QObject *object) Python specific notes:The object exposes a writable attribute 'originatingObject'. This is the setter. void setRawHeader(string headerName,string value)Description: Method void QNetworkRequest::setRawHeader(const QByteArray &headerName, const QByteArray &value) void setSslConfiguration(const QSslConfiguration configuration)Description: Method void QNetworkRequest::setSslConfiguration(const QSslConfiguration &configuration) Python specific notes:The object exposes a writable attribute 'sslConfiguration'. This is the setter. void setUrl(const QUrl url)Description: Method void QNetworkRequest::setUrl(const QUrl &url) Python specific notes:The object exposes a writable attribute 'url'. This is the setter. [const] QSslConfiguration sslConfigurationDescription: Method QSslConfiguration QNetworkRequest::sslConfiguration() Python specific notes:The object exposes a readable attribute 'sslConfiguration'. This is the getter. void sslConfiguration=(const QSslConfiguration configuration)Description: Method void QNetworkRequest::setSslConfiguration(const QSslConfiguration &configuration) Python specific notes:The object exposes a writable attribute 'sslConfiguration'. This is the setter. [const] QUrl urlDescription: Method QUrl QNetworkRequest::url() Python specific notes:The object exposes a readable attribute 'url'. This is the getter. void url=(const QUrl url)Description: Method void QNetworkRequest::setUrl(const QUrl &url) Python specific notes:The object exposes a writable attribute 'url'. This is the setter. |