| BsonArrayAddRange Method (IEnumerableObjectId) | 
 
            Adds multiple elements to the array.
            
 
    Namespace: 
   MongoDB.Bson
    Assembly:
   MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
 Syntax
Syntaxpublic virtual BsonArray AddRange(
	IEnumerable<ObjectId> values
)
Public Overridable Function AddRange ( 
	values As IEnumerable(Of ObjectId)
) As BsonArray
abstract AddRange : 
        values : IEnumerable<ObjectId> -> BsonArray 
override AddRange : 
        values : IEnumerable<ObjectId> -> BsonArray Parameters
- values
- Type: System.Collections.GenericIEnumerableObjectId
 A list of values to add to the array.
Return Value
Type: 
BsonArrayThe array (so method calls can be chained).
 See Also
See Also