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

switch_xml_set_attr() public static method

public static switch_xml_set_attr ( switch_xml xml, string name, string value ) : switch_xml
xml switch_xml
name string
value string
return switch_xml
        public static switch_xml switch_xml_set_attr(switch_xml xml, string name, string value)
        {
            IntPtr cPtr = freeswitchPINVOKE.switch_xml_set_attr(switch_xml.getCPtr(xml), name, value);
            switch_xml ret = (cPtr == IntPtr.Zero) ? null : new switch_xml(cPtr, false);
            return ret;
        }
freeswitch