InsertManyOptions.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* Copyright 2010-present MongoDB Inc.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. *
  15. */
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Linq;
  19. using System.Text;
  20. namespace MongoDB.Driver
  21. {
  22. /// <summary>
  23. /// Options for inserting many documents.
  24. /// </summary>
  25. public sealed class InsertManyOptions
  26. {
  27. // fields
  28. private bool? _bypassDocumentValidation;
  29. private bool _isOrdered;
  30. // constructors
  31. /// <summary>
  32. /// Initializes a new instance of the <see cref="InsertManyOptions"/> class.
  33. /// </summary>
  34. public InsertManyOptions()
  35. {
  36. _isOrdered = true;
  37. }
  38. // properties
  39. /// <summary>
  40. /// Gets or sets a value indicating whether to bypass document validation.
  41. /// </summary>
  42. public bool? BypassDocumentValidation
  43. {
  44. get { return _bypassDocumentValidation; }
  45. set { _bypassDocumentValidation = value; }
  46. }
  47. /// <summary>
  48. /// Gets or sets a value indicating whether the requests are fulfilled in order.
  49. /// </summary>
  50. public bool IsOrdered
  51. {
  52. get { return _isOrdered; }
  53. set { _isOrdered = value; }
  54. }
  55. }
  56. }