共用方式為


ByteArrayContent 建構函式

定義

初始化 ByteArrayContent 類別的新執行個體。

多載

ByteArrayContent(Byte[])

初始化 ByteArrayContent 類別的新執行個體。

ByteArrayContent(Byte[], Int32, Int32)

初始化 ByteArrayContent 類別的新執行個體。

ByteArrayContent(Byte[])

來源:
ByteArrayContent.cs
來源:
ByteArrayContent.cs
來源:
ByteArrayContent.cs

初始化 ByteArrayContent 類別的新執行個體。

public:
 ByteArrayContent(cli::array <System::Byte> ^ content);
public ByteArrayContent (byte[] content);
new System.Net.Http.ByteArrayContent : byte[] -> System.Net.Http.ByteArrayContent
Public Sub New (content As Byte())

參數

content
Byte[]

用來初始化 ByteArrayContent 的內容。

例外狀況

content 參數為 null

備註

類別 ByteArrayContent 不會在內部複製提供的位元組陣列,而是保留其參考。 呼叫端不應該在傳送內容之後修改數位中的數據。

適用於

ByteArrayContent(Byte[], Int32, Int32)

來源:
ByteArrayContent.cs
來源:
ByteArrayContent.cs
來源:
ByteArrayContent.cs

初始化 ByteArrayContent 類別的新執行個體。

public:
 ByteArrayContent(cli::array <System::Byte> ^ content, int offset, int count);
public ByteArrayContent (byte[] content, int offset, int count);
new System.Net.Http.ByteArrayContent : byte[] * int * int -> System.Net.Http.ByteArrayContent
Public Sub New (content As Byte(), offset As Integer, count As Integer)

參數

content
Byte[]

用來初始化 ByteArrayContent 的內容。

offset
Int32

content 參數中用來初始化 ByteArrayContent 的位移 (以位元組為單位)。

count
Int32

content中的位元組數目(從用來初始化ByteArrayContentoffset參數開始)。

例外狀況

content 參數為 null

offset 參數小於零。

-或-

offset 參數大於 content 參數指定的內容長度。

-或-

count 參數小於零。

-或-

count 參數大於 content 參數指定的內容長度,減去 offset 參數。

備註

類別 ByteArrayContent 不會在內部複製提供的位元組陣列,而是保留其參考。 呼叫端不應該在傳送內容之後修改數位中的數據。

只有 參數所 offset 指定的範圍,而且參數 count 會當做內容使用。

適用於