Click or drag to resize

UnsupportedFilteringSettingsLargeUnsupportedMaxFilteredChars Property

Limits the numbers of filtered characters that are written to a stream (should be a FileStream) by ExtractContent(Stream).

Namespace: OpenDiscoverSDK.Interfaces.Settings
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntax
C#
[DataMemberAttribute]
public long LargeUnsupportedMaxFilteredChars { get; set; }

Property Value

Int64
Remarks

If filtering a 'large' unsupported or unknown document, once the maximum number of filtered characters is reached the binary-to-text content extractor closes the stream and exits. One of the purposes of this property is to prevent/limit unintended filtering of all the bytes in a very large file server BLOB (e.g., a 100 GB unknown data BLOB).

The default property value: 1,073,741,821 [characters] - close to the maximum size, in characters, of a .NET string.

By default property value, only the first 1,073,741,821 filtered characters will be written to the stream (FileStream). This value can be increased up to maximum property value of 21,474,836,480 (20 billion) [characters].

Valid property value range: 1,048,576 (1 million) to 21,474,836,480 (20 billion) [characters]

See Also