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

switch_xml_set_txt() public static method

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