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.
|
|
namespace Newtonsoft.Json.Serialization{ /// <summary>
/// The default naming strategy. Property names and dictionary keys are unchanged.
/// </summary>
internal class DefaultNamingStrategy : NamingStrategy { /// <summary>
/// Resolves the specified property name.
/// </summary>
/// <param name="name">The property name to resolve.</param>
/// <returns>The resolved property name.</returns>
protected override string ResolvePropertyName(string name) { return name; } }}
|