efl/src/lib/ecore_con/efl_network_url.eo

31 lines
805 B
Plaintext

class Efl.Network.Url (Eo.Base) {
[[Uniform Resource Locator (URL) base class]]
legacy_prefix: null;
eo_prefix: efl_network_url;
methods {
@property url {
[[Controls the URL to send the request to.]]
set {
return: bool (false); [[true on success, false on error.]]
}
get {
}
values {
url: const(char) *; [[The URL]]
}
}
}
implements {
Eo.Base.constructor;
Eo.Base.destructor;
Eo.Base.finalize;
}
events {
data; [[Triggered when data arrives at the socket.]]
progress; [[Triggered when progress is made in upload/download.]]
complete; [[Triggered when the operation is complete.]]
}
}
/* FIXME: Actually migrate all of the functions. */