13 references to DateTimeOffsetConverter
dotnet-aot (1)
Generated\361d1da7f942c932\TelemetryDiskLoggerJsonSerializerContext.DateTimeOffset.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
dotnet-user-jwts (1)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JwtSerializerContext.DateTimeOffset.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
Microsoft.AspNetCore.Identity (1)
Generated\361d1da7f942c932\IdentityEndpointsJsonSerializerContext.DateTimeOffset.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
Microsoft.NET.Sdk.StaticWebAssets.Tasks (2)
Generated\361d1da7f942c932\DefineStaticWebAssetsSerializerContext.DateTimeOffset.g.cs (1)
31
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
Generated\361d1da7f942c932\StaticWebAssetsJsonSerializerContext.DateTimeOffset.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
Microsoft.TestPlatform.CommunicationUtilities (1)
Generated\361d1da7f942c932\TestPlatformJsonContext.DateTimeOffset.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
NuGet.CommandLine.XPlat (1)
Generated\361d1da7f942c932\PackageSearchJsonContext.DateTimeOffset.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
NuGet.Protocol (3)
Generated\361d1da7f942c932\PackageSearchJsonContext.DateTimeOffset.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
Generated\361d1da7f942c932\RepositorySignatureJsonContext.DateTimeOffset.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.DateTimeOffset.g.cs (1)
29
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateValueInfo<global::System.DateTimeOffset>(options, global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.
DateTimeOffsetConverter
);
System.Text.Json (3)
System\Text\Json\Nodes\JsonValue.CreateOverloads.cs (2)
81
public static JsonValue Create(DateTimeOffset value, JsonNodeOptions? options = null) => new JsonValuePrimitive<DateTimeOffset>(value, JsonMetadataServices.
DateTimeOffsetConverter
, options);
89
public static JsonValue? Create(DateTimeOffset? value, JsonNodeOptions? options = null) => value.HasValue ? new JsonValuePrimitive<DateTimeOffset>(value.Value, JsonMetadataServices.
DateTimeOffsetConverter
, options) : null;
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Converters.cs (1)
59
Add(JsonMetadataServices.
DateTimeOffsetConverter
);