InsertOneOptions.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 one document.
  24. /// </summary>
  25. public sealed class InsertOneOptions
  26. {
  27. // private fields
  28. private bool? _bypassDocumentValidation;
  29. // public properties
  30. /// <summary>
  31. /// Gets or sets a value indicating whether to bypass document validation.
  32. /// </summary>
  33. public bool? BypassDocumentValidation
  34. {
  35. get { return _bypassDocumentValidation; }
  36. set { _bypassDocumentValidation = value; }
  37. }
  38. }
  39. }