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

switch_xml_find_child() public static method

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