Dart SDK
dart:html
HttpRequestUpload
class
HttpRequestUpload
Methods
addEventListener
removeEventListener
dispatchEvent
(Not documented.)
Annotations
DocsEditable()
DomName('XMLHttpRequestUpload')
Experimental()
Extends
Object
EventTarget
HttpRequestEventTarget
HttpRequestUpload
Properties
Events
on
read-only ,
inherited
This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.
Stream
<
ProgressEvent
>
onAbort
read-only ,
inherited
Stream of abort events handled by this [HttpRequestEventTarget].
Stream
<
ProgressEvent
>
onError
read-only ,
inherited
Stream of error events handled by this [HttpRequestEventTarget].
Stream
<
ProgressEvent
>
onLoad
read-only ,
inherited
Stream of load events handled by this [HttpRequestEventTarget].
Stream
<
ProgressEvent
>
onLoadEnd
read-only ,
inherited
Stream of loadend events handled by this [HttpRequestEventTarget].
Stream
<
ProgressEvent
>
onLoadStart
read-only ,
inherited
Stream of loadstart events handled by this [HttpRequestEventTarget].
Stream
<
ProgressEvent
>
onProgress
read-only ,
inherited
Stream of progress events handled by this [HttpRequestEventTarget].
Stream
<
ProgressEvent
>
onTimeout
read-only ,
inherited
Stream of timeout events handled by this [HttpRequestEventTarget].
Methods
addEventListener
(
String
type
,
dynamic
listener
(
Event
event
)
, [
bool
useCapture
]) →
void
inherited
removeEventListener
(
String
type
,
dynamic
listener
(
Event
event
)
, [
bool
useCapture
]) →
void
inherited
dispatchEvent
(
Event
event
) →
bool
inherited