Android.OS.Handler.PostAtTime Method
Causes the Runnable r to be added to the message queue, to be run at a specific time given by uptimeMillis.

Syntax

[Android.Runtime.Register("postAtTime", "(Ljava/lang/Runnable;J)Z", "")]
public bool PostAtTime (Java.Lang.IRunnable r, long uptimeMillis)

Parameters

r
The Runnable that will be executed.
uptimeMillis
The absolute time at which the callback should run, using the SystemClock.UptimeMillis time-base.

Returns

Documentation for this section has not yet been entered.

Remarks

Causes the Runnable r to be added to the message queue, to be run at a specific time given by uptimeMillis. The time-base is SystemClock.UptimeMillis. Time spent in deep sleep will add an additional delay to execution. The runnable will be run on the thread to which this handler is attached.

[Android Documentation]

Requirements

Namespace: Android.OS
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1