1 instantiation of JsonDataWriter
rzc (1)
Json\ObjectJsonConverter`1.cs (1)
45var dataWriter = new JsonDataWriter(writer);
25 references to JsonDataWriter
rzc (25)
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)
12protected abstract void WriteProperties(JsonDataWriter writer, T value); 45var dataWriter = new JsonDataWriter(writer);
Json\ObjectWriters.cs (4)
11public static void Write(JsonDataWriter writer, RazorDiagnostic? value) 14public static void WriteProperties(JsonDataWriter writer, RazorDiagnostic value) 28public static void Write(JsonDataWriter writer, RazorExtension? value) 31public static void WriteProperties(JsonDataWriter writer, RazorExtension value)
Json\ObjectWriters_TagHelpers.cs (16)
13public static void Write(JsonDataWriter writer, TagHelperDescriptor? value) 16public static void WriteProperties(JsonDataWriter writer, TagHelperDescriptor value) 33static void WriteDocumentationObject(JsonDataWriter writer, string propertyName, DocumentationObject documentationObject) 63static void WriteTypeNameObject(JsonDataWriter writer, string propertyName, TypeNameObject value) 92static void WriteTagMatchingRule(JsonDataWriter writer, TagMatchingRuleDescriptor value) 105static void WriteRequiredAttribute(JsonDataWriter writer, RequiredAttributeDescriptor value) 118static void WriteBoundAttribute(JsonDataWriter writer, BoundAttributeDescriptor value) 139static void WriteBoundAttributeParameter(JsonDataWriter writer, BoundAttributeParameterDescriptor value) 153static void WriteAllowedChildTag(JsonDataWriter writer, AllowedChildTagDescriptor value) 163static void WriteMetadata(JsonDataWriter writer, string propertyName, MetadataObject metadata) 212static void WriteTypeParameterMetadata(JsonDataWriter writer, TypeParameterMetadata metadata) 219static void WritePropertyMetadata(JsonDataWriter writer, PropertyMetadata metadata) 230static void WriteBindMetadata(JsonDataWriter writer, BindMetadata metadata) 241static void WriteComponentMetadata(JsonDataWriter writer, ComponentMetadata metadata) 247static void WriteEventHandlerMetadata(JsonDataWriter writer, EventHandlerMetadata metadata) 252static void WriteViewComponentMetadata(JsonDataWriter writer, ViewComponentMetadata metadata)
Json\TagHelperDescriptorJsonConverter.cs (1)
19protected override void WriteProperties(JsonDataWriter writer, TagHelperDescriptor value)