Skip to content

Commit

Permalink
BufferLimit for ASP.NET 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kotov.a committed Dec 6, 2019
1 parent d02f283 commit 043e542
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/SoapCore/SoapEndpointExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,9 @@ public static IEndpointConventionBuilder UseSoapEndpoint<T>(this IEndpointRouteB
CaseInsensitivePath = opt.CaseInsensitivePath,
EncoderOptions = opt.EncoderOptions,
SoapModelBounder = opt.SoapModelBounder,
SoapSerializer = opt.SoapSerializer
SoapSerializer = opt.SoapSerializer,
BufferLimit = opt.BufferLimit,
BufferThreshold = opt.BufferThreshold
};

var pipeline = routes
Expand Down

0 comments on commit 043e542

Please sign in to comment.