efl/src/lib/ecore_con/efl_network_url.eo

30 lines
786 B
Plaintext
Raw Normal View History

class Efl.Network.Url (Efl.Object) {
[[Uniform Resource Locator (URL) base class]]
eo_prefix: efl_network_url;
methods {
@property url {
2015-06-19 07:44:22 -07:00
[[Controls the URL to send the request to.]]
2014-08-28 03:30:53 -07:00
set {
2015-06-19 07:44:22 -07:00
return: bool (false); [[true on success, false on error.]]
2014-08-28 03:30:53 -07:00
}
get {
}
values {
url: string; [[The URL]]
2014-08-28 03:30:53 -07:00
}
}
}
implements {
Efl.Object.constructor;
Efl.Object.destructor;
Efl.Object.finalize;
2014-08-28 03:30:53 -07:00
}
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.]]
}
2014-08-28 03:30:53 -07:00
}
/* FIXME: Actually migrate all of the functions. */