| OutputBufferChunkSource Constructor  | 
  
    Namespace: 
   MongoDB.Bson.IO
    Assembly:
   MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
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
See Also