11 references to TryReadPropertyName
rzc (11)
Json\JsonDataReader.cs (8)
58=> !TryReadPropertyName(propertyName) || ReadBoolean(); 61=> TryReadPropertyName(propertyName) && ReadBoolean(); 67=> TryReadPropertyName(propertyName) ? ReadByte() : defaultValue; 70=> TryReadPropertyName(propertyName) ? ReadByte() : (byte)0; 82=> TryReadPropertyName(propertyName) ? ReadInt32() : 0; 107=> TryReadPropertyName(propertyName) ? ReadString() : null; 148=> TryReadPropertyName(propertyName) ? ReadNonNullObject(readProperties) : defaultValue; 191=> TryReadPropertyName(propertyName) ? ReadImmutableArray(readElement) : [];
Json\ObjectReaders_TagHelpers.cs (3)
140if (!reader.TryReadPropertyName(propertyName)) 176return reader.TryReadPropertyName(propertyName) 189var args = reader.TryReadPropertyName(nameof(DocumentationDescriptor.Args))