ByteArrayContent()

ByteArrayContent::ByteArrayContent(System::ArrayPtr<uint8_t>) constructor

Constructs a new instance.

System::Net::Http::ByteArrayContent::ByteArrayContent(System::ArrayPtr<uint8_t> content)

Arguments

ParameterTypeDescription
contentSystem::ArrayPtr<uint8_t>Content that is used to initialize a new instance.

ByteArrayContent::ByteArrayContent(System::ArrayPtr<uint8_t>, int32_t, int32_t) constructor

Constructs a new instance.

System::Net::Http::ByteArrayContent::ByteArrayContent(System::ArrayPtr<uint8_t> content, int32_t offset, int32_t count)

Arguments

ParameterTypeDescription
contentSystem::ArrayPtr<uint8_t>Content that is used to initialize a new instance.
offsetint32_tThe offset in bytes in the specified array.
countint32_tThe number of bytes in the specified array starting from the ‘offset’ parameter.

See Also