8 references to DateTimeConverter
dotnet-aot (1)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\SdkVulnerabilityJsonContext.DateTime.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTime>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeConverter
);
dotnet-dev-certs (1)
Generated\361d1da7f942c932\DevCertsJsonSerializerContext.DateTime.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTime>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeConverter
);
Microsoft.NET.Build.Tasks (1)
Generated\361d1da7f942c932\SdkVulnerabilitySummaryContext.DateTime.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTime>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeConverter
);
Microsoft.TemplateEngine.Edge (2)
Generated\361d1da7f942c932\GlobalSettingsJsonSerializerContext.DateTime.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTime>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeConverter
);
Generated\361d1da7f942c932\TemplateCacheJsonSerializerContext.DateTime.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTime>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeConverter
);
System.Text.Json (3)
System\Text\Json\Nodes\JsonValue.CreateOverloads.cs (2)
65
public static JsonValue Create(DateTime value, JsonNodeOptions? options = null) => new JsonValuePrimitive<DateTime>(value, JsonMetadataServices.
DateTimeConverter
, options);
73
public static JsonValue? Create(DateTime? value, JsonNodeOptions? options = null) => value.HasValue ? new JsonValuePrimitive<DateTime>(value.Value, JsonMetadataServices.
DateTimeConverter
, options) : null;
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Converters.cs (1)
58
Add(JsonMetadataServices.
DateTimeConverter
);