FreeSWITCH.Native.freeswitch.switch_caller_profile_clone C# (CSharp) Method

switch_caller_profile_clone() public static method

public static switch_caller_profile_clone ( SWIGTYPE_p_switch_core_session session, switch_caller_profile tocopy ) : switch_caller_profile
session SWIGTYPE_p_switch_core_session
tocopy switch_caller_profile
return switch_caller_profile
        public static switch_caller_profile switch_caller_profile_clone(SWIGTYPE_p_switch_core_session session, switch_caller_profile tocopy)
        {
            IntPtr cPtr = freeswitchPINVOKE.switch_caller_profile_clone(SWIGTYPE_p_switch_core_session.getCPtr(session), switch_caller_profile.getCPtr(tocopy));
            switch_caller_profile ret = (cPtr == IntPtr.Zero) ? null : new switch_caller_profile(cPtr, false);
            return ret;
        }
freeswitch