Response Class

The Response class of the com.ms.iis.asp package exposes methods that you can use to send output to the client.

public Response(com.ms.asp.IResponse);
{
  //Methods
  public void addHeader(String name, String value);
  public void appendToLog(String s);
  public void clear();
  public void end();
  public void flush() throws IOException;
  public boolean getBuffered();
  public String getCacheControl();
  public String getCharSet();
  public String getContentType();
  public CookieDictionary getCookies();
  public int getExpires();
  public wfc.app.Time getExpiresAbsolute();
  public string getStatus();
  public boolean isClientConnected();
  public void pics(String str);
  public void redirect(String str);
  public void setBuffered(boolean fIsBuffered);
  public void setCacheControl(String strCacheControl);
  public void setCharSet(String strCharSet);
  public void setContentType(String strContentType);
  public void setExpires(int iExpirationMinutes);
  public void setExpiresAbsolute(wfc.app.Time dateExpire);
  public void setStatus(String strStatus);
  public void write(java.lang.String p1);
  public void write(byte p1[], int p2, int p3);
}

© 1999 Microsoft Corporation. All rights reserved. Terms of use.