本文整理汇总了C#中FreeSWITCH.Native.switch_say_args_t类的典型用法代码示例。如果您正苦于以下问题:C# switch_say_args_t类的具体用法?C# switch_say_args_t怎么用?C# switch_say_args_t使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
switch_say_args_t类属于FreeSWITCH.Native命名空间,在下文中一共展示了switch_say_args_t类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: switch_ivr_say_ip
public static switch_status_t switch_ivr_say_ip(SWIGTYPE_p_switch_core_session session, string tosay, SWIGTYPE_p_f_p_switch_core_session_p_char_p_switch_say_args_t_p_switch_input_args_t__switch_status_t number_func, switch_say_args_t say_args, switch_input_args_t args)
{
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_ivr_say_ip(SWIGTYPE_p_switch_core_session.getCPtr(session), tosay, SWIGTYPE_p_f_p_switch_core_session_p_char_p_switch_say_args_t_p_switch_input_args_t__switch_status_t.getCPtr(number_func), switch_say_args_t.getCPtr(say_args), switch_input_args_t.getCPtr(args));
return ret;
}
示例2: switch_ivr_say_spell
public static switch_status_t switch_ivr_say_spell(SWIGTYPE_p_switch_core_session session, string tosay, switch_say_args_t say_args, switch_input_args_t args)
{
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_ivr_say_spell(SWIGTYPE_p_switch_core_session.getCPtr(session), tosay, switch_say_args_t.getCPtr(say_args), switch_input_args_t.getCPtr(args));
return ret;
}
示例3: getCPtr
internal static HandleRef getCPtr(switch_say_args_t obj)
{
return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
}