You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/JsonApiDotNetCore/Serialization/JsonApiWriter.cs
+9-11
Original file line number
Diff line number
Diff line change
@@ -13,16 +13,13 @@
13
13
usingMicrosoft.AspNetCore.Http;
14
14
usingMicrosoft.AspNetCore.Http.Extensions;
15
15
usingMicrosoft.AspNetCore.Mvc;
16
-
usingMicrosoft.AspNetCore.Mvc.Formatters;
16
+
usingMicrosoft.AspNetCore.WebUtilities;
17
17
usingMicrosoft.Extensions.Logging;
18
18
usingMicrosoft.Net.Http.Headers;
19
19
20
20
namespaceJsonApiDotNetCore.Serialization
21
21
{
22
-
/// <summary>
23
-
/// Formats the response data used (see https://docs.microsoft.com/en-us/aspnet/core/web-api/advanced/formatting?view=aspnetcore-3.0). It was intended to
24
-
/// have as little dependencies as possible in formatting layer for greater extensibility.
25
-
/// </summary>
22
+
/// <inheritdoc />
26
23
publicsealedclassJsonApiWriter:IJsonApiWriter
27
24
{
28
25
privatereadonlyIJsonApiSerializer_serializer;
@@ -43,21 +40,22 @@ public JsonApiWriter(IJsonApiSerializer serializer, IExceptionHandler exceptionH
0 commit comments