Property | Type | Description | |
---|---|---|---|
TouchTone | System | ||
TryParseKey | bool |
Method | Description | |
---|---|---|
GetTouchTones ( string keys ) : GSF.Media.Sound.DTMF[] |
Get array of touch tones for given string. Non-touch tone characters are ignored. Commas are interpreted as a one second pause. |
|
GetTouchTones ( string keys, double keyDuration, double interKeyPause ) : GSF.Media.Sound.DTMF[] |
Get array of touch tones for given string. Non-touch tone characters are ignored. Commas are interpreted as a one second pause. |
|
Parse ( char key ) : |
Converts the character representation of a touch tone key into an instance of the TouchTone class.
|
|
TouchTone ( Char key ) : System |
Constructs a new TouchTone for specified touch tone key character.
|
|
TouchTone ( TouchToneKey key ) : System |
Constructs a new TouchTone for specified touch tone key.
|
|
TouchTone ( int key ) : System |
Constructs a new TouchTone for specified touch tone key number.
|
|
TryParse ( char key, |
Converts the character representation of a touch tone key into an instance of the TouchTone class. A return value indicates whether the conversion succeeded.
|
Method | Description | |
---|---|---|
TouchTone ( ) : System | ||
TryParseKey ( char key, TouchToneKey &result ) : bool |
public static GetTouchTones ( string keys ) : GSF.Media.Sound.DTMF[] | ||
keys | string | String of touch tone characters to convert to touch tones. |
return | GSF.Media.Sound.DTMF[] |
public static GetTouchTones ( string keys, double keyDuration, double interKeyPause ) : GSF.Media.Sound.DTMF[] | ||
keys | string | String of touch tone characters to convert to touch tones. |
keyDuration | double | Duration of touch tone key press in seconds, typically fractional. |
interKeyPause | double | Time to wait between key presses in seconds, typically fractional. |
return | GSF.Media.Sound.DTMF[] |
public static Parse ( char key ) : |
||
key | char | A character containing a touch tone key to convert. |
return |
public TouchTone ( Char key ) : System | ||
key | Char | Character of touch tone to create. |
return | System |
public TouchTone ( TouchToneKey key ) : System | ||
key | TouchToneKey | Touch tone to create. |
return | System |
public TouchTone ( int key ) : System | ||
key | int | Number of touch tone to create (note that * = 10 and # = 11). |
return | System |
public static TryParse ( char key, |
||
key | char | A character containing a touch tone key to convert. |
result |
/// When this method returns, contains an instance of the |
|
return | bool |