|  | AGIScriptSayDateTime Method (Int64, String, String, String) | 
            Says the given time in the given format and timezone and allows interruption by one of the given escape digits.
            Available since Asterisk 1.2.
            
 
Namespace: AsterNET.FastAGIAssembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntaxprotected char SayDateTime(
	long time,
	string escapeDigits,
	string format,
	string timezone
)
Protected Function SayDateTime ( 
	time As Long,
	escapeDigits As String,
	format As String,
	timezone As String
) As Char
protected:
wchar_t SayDateTime(
	long long time, 
	String^ escapeDigits, 
	String^ format, 
	String^ timezone
)
member SayDateTime : 
        time : int64 * 
        escapeDigits : string * 
        format : string * 
        timezone : string -> char 
Parameters
- time
- Type: SystemInt64
 the time to say in seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC)
- escapeDigits
- Type: SystemString
 the digits that allow the user to interrupt this command or null for none.
- format
- Type: SystemString
 the format the time should be said in
- timezone
- Type: SystemString
 the timezone to use when saying the time, for example "UTC" or "Europe/Berlin".
Return Value
Type: 
Charthe DTMF digit pressed or 0x0 if none was pressed.
 See Also
See Also