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

switch_xml_parse_str_dynamic() public static method

public static switch_xml_parse_str_dynamic ( string s, switch_bool_t dup ) : switch_xml
s string
dup switch_bool_t
return switch_xml
        public static switch_xml switch_xml_parse_str_dynamic(string s, switch_bool_t dup)
        {
            IntPtr cPtr = freeswitchPINVOKE.switch_xml_parse_str_dynamic(s, (int)dup);
            switch_xml ret = (cPtr == IntPtr.Zero) ? null : new switch_xml(cPtr, false);
            return ret;
        }
freeswitch