PreFlush Property for French (Canada)
Gets or sets whether to flush the data buffer on the underlying telephony interface card before activation. Read/write.
Usage
ASP.NET markup: | <speech:IDtmf PreFlush="..." /> |
Get value: | System.Boolean = IDtmf.PreFlush; |
Set value: | IDtmf.PreFlush = System.Boolean; |
Data type: | System.Boolean |
Required: | No; Default: False |
Remarks
Default is False, in order to enable type-ahead functionality.
The PreFlush property mirrors the preflush property on the SALT dtmf object.
Example
<form id="Form1" method="post" runat="server">
...
<speech:date
id="Date1"
QuestionPrompt="quand est-ce que vous aimeriez voyager?"
DateContext="Future"
AllowHolidays="True"
AllowNumeralDates="True"
AllowRelativeDates="True"
DaySemanticItem="DaySemItem"
MonthSemanticItem="MonthSemItem"
YearSemanticItem="YearSemItem"
ConfirmThreshold="0.6"
AllowDTMF="True"
PreFlush="True"
InterDigitTimeout="5000"
runat="server">
</speech:date>
<asp:textbox id="tbDay" runat="server"></asp:textbox>
<asp:TextBox id="tbMonth" runat="server"></asp:TextBox>
<asp:TextBox id="tbYear" runat="server"></asp:TextBox>
...
</form>