Esempio n. 1
0
 public static void ValidateProperty(ReadOnlySpan <char> propertyName)
 {
     if (propertyName.Length > JsonConstants.MaxCharacterTokenSize)
     {
         ThrowHelper.ThrowArgumentException_PropertyNameTooLarge(propertyName.Length);
     }
 }