共用方式為


HttpRequestWrapper.InsertEntityBody 方法

定義

提供 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 上叫用此方法。

buffernull

offsetcount 為負值。

在指定 count 值的情況下,buffer 中的項目數大於 offset 的可用空間。

適用於