1
Spring MVCでResponse.ClearとResponse.ClearContentとは何かを知る必要があります。Response.ClearとResponse.ClearContent in Spring MVC
Spring MVCでResponse.ClearとResponse.ClearContentとは何かを知る必要があります。Response.ClearとResponse.ClearContent in Spring MVC
Response.Clear()
Response.ClearContent()
(同じ機能の場合、より一致する名前)を呼び出します。違いはありません。両方ともヘッダー情報を除いて応答ストリームをクリアします。
public void Clear()
{
ClearContent();
}
public void ClearContent()
{
output_stream.Clear();
content_length = -1;
}
FROM MSDNから、ClearContentメソッドはヘッダー情報をクリアしません。 – user960567
@ user960567 MSDNによれば、 'Response.Clear()'メソッドもヘッダー情報をクリアしないので、違いはありません。 –