Bulk insert using c# driver

I have a list of 100k items and would like to create a new Mongo collection with these many records.
I am planning to use BulkInsertAsync method provided by Mongo Driver for C#. Can I insert the entire 100k documents by making 1 BulkInsertAsync call or should this operation be done in batches?

Thanks,
Supriya