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

switch_caller_profile_new() public static method

public static switch_caller_profile_new ( SWIGTYPE_p_apr_pool_t pool, string username, string dialplan, string caller_id_name, string caller_id_number, string network_addr, string ani, string aniii, string rdnis, string source, string context, string destination_number ) : switch_caller_profile
pool SWIGTYPE_p_apr_pool_t
username string
dialplan string
caller_id_name string
caller_id_number string
network_addr string
ani string
aniii string
rdnis string
source string
context string
destination_number string
return switch_caller_profile
        public static switch_caller_profile switch_caller_profile_new(SWIGTYPE_p_apr_pool_t pool, string username, string dialplan, string caller_id_name, string caller_id_number, string network_addr, string ani, string aniii, string rdnis, string source, string context, string destination_number)
        {
            IntPtr cPtr = freeswitchPINVOKE.switch_caller_profile_new(SWIGTYPE_p_apr_pool_t.getCPtr(pool), username, dialplan, caller_id_name, caller_id_number, network_addr, ani, aniii, rdnis, source, context, destination_number);
            switch_caller_profile ret = (cPtr == IntPtr.Zero) ? null : new switch_caller_profile(cPtr, false);
            return ret;
        }
freeswitch