ByteArrayContent Constructor (Byte[])
Initializes a new instance of the ByteArrayContent class.
Namespace: System.Net.Http
Assembly: System.Net.Http (in System.Net.Http.dll)
Syntax
'Declaration
Public Sub New ( _
content As Byte() _
)
'Usage
Dim content As Byte()
Dim instance As New ByteArrayContent(content)
public ByteArrayContent(
byte[] content
)
public:
ByteArrayContent(
array<unsigned char>^ content
)
new :
content:byte[] -> ByteArrayContent
public function ByteArrayContent(
content : byte[]
)
Parameters
- content
Type: System.Byte[]
The content used to initialize the ByteArrayContent.