InputBufferChunkSource Constructor  | 
  
    Namespace: 
   MongoDB.Bson.IO
    Assembly:
   MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
Syntaxpublic InputBufferChunkSource(
	IBsonChunkSource baseSource,
	int maxUnpooledChunkSize = 4096,
	int minChunkSize = 16384,
	int maxChunkSize = 1048576
)
Public Sub New ( 
	baseSource As IBsonChunkSource,
	Optional maxUnpooledChunkSize As Integer = 4096,
	Optional minChunkSize As Integer = 16384,
	Optional maxChunkSize As Integer = 1048576
)
new : 
        baseSource : IBsonChunkSource * 
        ?maxUnpooledChunkSize : int * 
        ?minChunkSize : int * 
        ?maxChunkSize : int 
(* Defaults:
        let _maxUnpooledChunkSize = defaultArg maxUnpooledChunkSize 4096
        let _minChunkSize = defaultArg minChunkSize 16384
        let _maxChunkSize = defaultArg maxChunkSize 1048576
*)
-> InputBufferChunkSourceParameters
- baseSource
 - Type: MongoDB.Bson.IOIBsonChunkSource
The chunk source. - maxUnpooledChunkSize (Optional)
 - Type: SystemInt32
The maximum size of an unpooled chunk. - minChunkSize (Optional)
 - Type: SystemInt32
The minimum size of a chunk. - maxChunkSize (Optional)
 - Type: SystemInt32
The maximum size of a chunk. 
See Also