API Reference 0.3.24dart_web_toolkit_httpHeader

Header abstract class

Class for describing an HTTP header.

Required Module

Modules that use this class should inherit com.google.gwt.http.HTTP.

{@gwt.include com/google/gwt/examples/http/InheritsExample.gwt.xml}

abstract class Header {
 /**
  * Returns the name of the HTTP header.
  * 
  * @return name of the HTTP header 
  */
 String getName();
 
 /**
  * Returns the value of the HTTP header.
  * 
  * @return value of the HTTP header 
  */
 String getValue();
}

Methods

abstract String getName() #

Returns the name of the HTTP header.

@return name of the HTTP header

abstract String getValue() #

Returns the value of the HTTP header.

@return value of the HTTP header