Azure Integrator V2 - Online Help
Azure Integrator V2
Questions / Feedback?

BlobData Property

Contains the data of one blob/block.

Syntax

[VB.NET]
Public Property BlobData As String
Public Property BlobDataB As Byte()

[C#]
public string BlobData {get; set;}
public byte[] BlobDataB {get; set;}

Remarks

This property is used to get or set the data of a blob/block.

BlobData will be populated after a successful GetBlob call, provided that LocalFile is not set. If LocalFile is set, the blob data will be written to the file specified.

When CreateBlock is called, the content of this property will be used to create the block. Note that blocks have a 4 MB size limit. Trying to upload a block larger than 4 MB will result in a 413 (Request Entity Too Large) error.

When CreateBlob is called, the content of this property will be used to create the blob, provided that LocalFile is not set. If LocalFile is set, the specified file will be used to create the blob.

Alternatively, streams can be used to upload and download blob data by using SetUploadStream and SetDownloadStream, respectively. When a valid stream is specified, all data will be retrieved from (when calling CreateBlob) or written to (when calling GetBlob) the specified stream.

This property is not available at design time.

Default Value

""

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 2.0.6240.0