You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
575 B

  1. namespace Newtonsoft.Json.Serialization
  2. {
  3. /// <summary>
  4. /// The default naming strategy. Property names and dictionary keys are unchanged.
  5. /// </summary>
  6. internal class DefaultNamingStrategy : NamingStrategy
  7. {
  8. /// <summary>
  9. /// Resolves the specified property name.
  10. /// </summary>
  11. /// <param name="name">The property name to resolve.</param>
  12. /// <returns>The resolved property name.</returns>
  13. protected override string ResolvePropertyName(string name)
  14. {
  15. return name;
  16. }
  17. }
  18. }