Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove MemoryStreamFactory default value from Serialize extensions #125

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading