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

switch_xml_find_child_multi() public static method

public static switch_xml_find_child_multi ( switch_xml node, string childname ) : switch_xml
node switch_xml
childname string
return switch_xml
        public static switch_xml switch_xml_find_child_multi(switch_xml node, string childname)
        {
            IntPtr cPtr = freeswitchPINVOKE.switch_xml_find_child_multi(switch_xml.getCPtr(node), childname);
            switch_xml ret = (cPtr == IntPtr.Zero) ? null : new switch_xml(cPtr, false);
            return ret;
        }
freeswitch