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)

Syntax

Visual Basic (Declaration)
Property BlobReadAheadSize As Nullable(Of Integer)
C#
Nullable<int> BlobReadAheadSize { get; set; }
C++
property Nullable<int> BlobReadAheadSize abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_BlobReadAheadSize();

/** property */
public void set_BlobReadAheadSize(Nullable<intvalue);
JScript
public function get BlobReadAheadSize() : Nullable<int>

public function set BlobReadAheadSize(value : Nullable<int>);

Remarks

See Also