Skip to content

Commit

Permalink
Remove MemoryStreamFactory default value from Serialize extensions
Browse files Browse the repository at this point in the history
This removes an ambiguity in the extension method signatures.
  • Loading branch information
flobernd committed Oct 16, 2024
1 parent 28a141f commit 5dd694c
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static byte[] SerializeToBytes<T>(
public static byte[] SerializeToBytes<T>(
this Serializer serializer,
T? data,
MemoryStreamFactory? memoryStreamFactory = null,
MemoryStreamFactory? memoryStreamFactory,
SerializationFormatting formatting = SerializationFormatting.None
)
{
Expand Down Expand Up @@ -82,7 +82,7 @@ public static byte[] SerializeToBytes(
this Serializer serializer,
object? data,
Type type,
MemoryStreamFactory? memoryStreamFactory = null,
MemoryStreamFactory? memoryStreamFactory,
SerializationFormatting formatting = SerializationFormatting.None
)
{
Expand Down Expand Up @@ -119,7 +119,7 @@ public static string SerializeToString<T>(
public static string SerializeToString<T>(
this Serializer serializer,
T? data,
MemoryStreamFactory? memoryStreamFactory = null,
MemoryStreamFactory? memoryStreamFactory,
SerializationFormatting formatting = SerializationFormatting.None
)
{
Expand Down Expand Up @@ -167,7 +167,7 @@ public static string SerializeToString(
this Serializer serializer,
object? data,
Type type,
MemoryStreamFactory? memoryStreamFactory = null,
MemoryStreamFactory? memoryStreamFactory,
SerializationFormatting formatting = SerializationFormatting.None
)
{
Expand Down Expand Up @@ -219,7 +219,7 @@ public static void Serialize<T>(
this Serializer serializer,
T? data,
Utf8JsonWriter writer,
MemoryStreamFactory? memoryStreamFactory = null,
MemoryStreamFactory? memoryStreamFactory,
SerializationFormatting formatting = SerializationFormatting.None)
{
if (serializer is SystemTextJsonSerializer stjSerializer)
Expand Down Expand Up @@ -279,7 +279,7 @@ public static void Serialize(
object? data,
Type type,
Utf8JsonWriter writer,
MemoryStreamFactory? memoryStreamFactory = null,
MemoryStreamFactory? memoryStreamFactory,
SerializationFormatting formatting = SerializationFormatting.None)
{
if (serializer is SystemTextJsonSerializer stjSerializer)
Expand Down

0 comments on commit 5dd694c

Please sign in to comment.