예제 #1
0
 /// <inheritdoc />
 protected override string ResolveDictionaryKey(string dictionaryKey)
 {
     if (NamingStrategy != null)
     {
         return(NamingStrategy.GetDictionaryKey(dictionaryKey));
     }
     // We keep the case of dictionary keys intact.
     return(dictionaryKey);
 }