Specifies the maximum buffer size used to determine if the entire content blob should be read with a
single call to FPTag_BlobRead. If the content size is less than or equal to the parameter value,
the entire blob is read using a single call (a buffer of content size must be allocated), and the data
is passed back via the callers data stream as requested. If the content size is greater than the
parameter value, FPTag_BlobReadPartial is used to read only the data of the size requested by
the caller (no buffer is created).
Namespace:
FileNet.Api.Admin
Assembly:
FileNet.Api (in FileNet.Api.dll)
Visual Basic (Declaration) |
---|
Property BlobReadAheadSize As Nullable(Of Integer) |
C# |
---|
Nullable<int> BlobReadAheadSize { get; set; } |
Visual C++ |
---|
property Nullable<int> BlobReadAheadSize {
Nullable<int> get ();
void set (Nullable<int> value);
} |
JavaScript |
---|
function get_blobReadAheadSize();
function set_blobReadAheadSize(value); |