OutputBufferChunkSource Constructor  | 
  
    Namespace: 
   MongoDB.Bson.IO
    Assembly:
   MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic OutputBufferChunkSource(
	IBsonChunkSource baseSource,
	int initialUnpooledChunkSize = 1024,
	int minChunkSize = 16384,
	int maxChunkSize = 1048576
)
Public Sub New ( 
	baseSource As IBsonChunkSource,
	Optional initialUnpooledChunkSize As Integer = 1024,
	Optional minChunkSize As Integer = 16384,
	Optional maxChunkSize As Integer = 1048576
)
new : 
        baseSource : IBsonChunkSource * 
        ?initialUnpooledChunkSize : int * 
        ?minChunkSize : int * 
        ?maxChunkSize : int 
(* Defaults:
        let _initialUnpooledChunkSize = defaultArg initialUnpooledChunkSize 1024
        let _minChunkSize = defaultArg minChunkSize 16384
        let _maxChunkSize = defaultArg maxChunkSize 1048576
*)
-> OutputBufferChunkSourceParameters
- baseSource
 - Type: MongoDB.Bson.IOIBsonChunkSource
The chunk source. - initialUnpooledChunkSize (Optional)
 - Type: SystemInt32
The size of the initial unpooled chunk. - minChunkSize (Optional)
 - Type: SystemInt32
The minimum size of a chunk. - maxChunkSize (Optional)
 - Type: SystemInt32
The maximum size of a chunk. 
See Also