iControl.iControlInterface.RemoveHttpHeader C# (CSharp) Method

RemoveHttpHeader() public method

public RemoveHttpHeader ( string name ) : void
name string
return void
        public void RemoveHttpHeader(string name)
        {
            try
            {
                m_headers.Remove(name);
            }
            catch (Exception) { }
        }