HttpRequestWrapper.InsertEntityBody 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供 IIS 方法的 Managed 包裝函式,這個方法會將 HTTP 要求實體本文插入記憶體中。
多載
InsertEntityBody() |
將 HTTP 要求實體內文的複本提供給 IIS。 |
InsertEntityBody(Byte[], Int32, Int32) |
將 HTTP 要求實體本文的複本及該要求實體物件的相關資訊提供給 IIS。 |
InsertEntityBody()
將 HTTP 要求實體內文的複本提供給 IIS。
public:
override void InsertEntityBody();
public override void InsertEntityBody ();
override this.InsertEntityBody : unit -> unit
Public Overrides Sub InsertEntityBody ()
例外狀況
已在比 IIS 7.0 版舊的 IIS 上叫用此方法。
適用於
InsertEntityBody(Byte[], Int32, Int32)
將 HTTP 要求實體本文的複本及該要求實體物件的相關資訊提供給 IIS。
public:
override void InsertEntityBody(cli::array <System::Byte> ^ buffer, int offset, int count);
public override void InsertEntityBody (byte[] buffer, int offset, int count);
override this.InsertEntityBody : byte[] * int * int -> unit
Public Overrides Sub InsertEntityBody (buffer As Byte(), offset As Integer, count As Integer)
參數
- buffer
- Byte[]
包含要求實體資料的陣列。
- offset
- Int32
在 buffer
中要開始儲存該要求實體資料的位置 (以零為起始)。
- count
- Int32
要讀入 buffer
陣列的位元組數目。
例外狀況
已在比 IIS 7.0 版舊的 IIS 上叫用此方法。
buffer
為 null
。
offset
或 count
為負值。
在指定 count
值的情況下,buffer
中的項目數大於 offset
的可用空間。