iControl.iControlInterface.RemoveHttpHeader C# (CSharp) 메소드

RemoveHttpHeader() 공개 메소드

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