IElementNameValidator.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. namespace MongoDB.Bson.IO
  16. {
  17. /// <summary>
  18. /// Represents an element name validator. Used by BsonWriters when WriteName is called
  19. /// to determine if the element name is valid.
  20. /// </summary>
  21. public interface IElementNameValidator
  22. {
  23. /// <summary>
  24. /// Gets the validator to use for child content (a nested document or array).
  25. /// </summary>
  26. /// <param name="elementName">The name of the element.</param>
  27. /// <returns>The validator to use for child content.</returns>
  28. IElementNameValidator GetValidatorForChildContent(string elementName);
  29. /// <summary>
  30. /// Determines whether the element name is valid.
  31. /// </summary>
  32. /// <param name="elementName">The name of the element.</param>
  33. /// <returns>True if the element name is valid.</returns>
  34. bool IsValidElementName(string elementName);
  35. }
  36. }