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