我的代碼是現在這個樣子:獲取Response.output大小?
var xmlSerializer = new XmlSerializer(typeof(DataSet));
xmlSerializer.Serialize(Response.Output, ds);
之後,我想要顯示的大小,但是這給了我一個錯誤:
Response.AddHeader("Content-Length", Response.OutputStream.Length.ToString());
的錯誤是
NotSupportedException was unhandled by user code
錯誤是?????? –
基礎流不支持'Length'。你可以做的事情不多。 – Oded
@Oded我知道它不支持長度,這就是爲什麼我問我如何可以得到他的Response.Ouput對象的大小。你的迴應沒有增加任何有價值的東西。 – NomenNescio