1 instantiation of JsonDataWriter
rzc (1)
Json\ObjectJsonConverter`1.cs (1)
40var dataWriter = new JsonDataWriter(writer);
22 references to JsonDataWriter
rzc (22)
Json\JsonDataWriter.cs (2)
9internal delegate void WriteProperties<T>(JsonDataWriter writer, T value); 10internal delegate void WriteValue<T>(JsonDataWriter writer, T value);
Json\ObjectJsonConverter`1.cs (2)
13protected abstract void WriteProperties(JsonDataWriter writer, T value); 40var dataWriter = new JsonDataWriter(writer);
Json\ObjectWriters.cs (2)
11public static void Write(JsonDataWriter writer, RazorDiagnostic? value) 14public static void WriteProperties(JsonDataWriter writer, RazorDiagnostic value)
Json\ObjectWriters_TagHelpers.cs (15)
13public static void WriteProperties(JsonDataWriter writer, TagHelperDescriptor value) 30static void WriteDocumentationObject(JsonDataWriter writer, string propertyName, DocumentationObject documentationObject) 60static void WriteTypeNameObject(JsonDataWriter writer, string propertyName, TypeNameObject value) 89static void WriteTagMatchingRule(JsonDataWriter writer, TagMatchingRuleDescriptor value) 102static void WriteRequiredAttribute(JsonDataWriter writer, RequiredAttributeDescriptor value) 115static void WriteBoundAttribute(JsonDataWriter writer, BoundAttributeDescriptor value) 136static void WriteBoundAttributeParameter(JsonDataWriter writer, BoundAttributeParameterDescriptor value) 150static void WriteAllowedChildTag(JsonDataWriter writer, AllowedChildTagDescriptor value) 160static void WriteMetadata(JsonDataWriter writer, string propertyName, MetadataObject metadata) 209static void WriteTypeParameterMetadata(JsonDataWriter writer, TypeParameterMetadata metadata) 216static void WritePropertyMetadata(JsonDataWriter writer, PropertyMetadata metadata) 227static void WriteBindMetadata(JsonDataWriter writer, BindMetadata metadata) 238static void WriteComponentMetadata(JsonDataWriter writer, ComponentMetadata metadata) 244static void WriteEventHandlerMetadata(JsonDataWriter writer, EventHandlerMetadata metadata) 249static void WriteViewComponentMetadata(JsonDataWriter writer, ViewComponentMetadata metadata)
Json\TagHelperDescriptorJsonConverter.cs (1)
29protected override void WriteProperties(JsonDataWriter writer, TagHelperDescriptor value)