1 write to ObjectType
Microsoft.AspNetCore.Mvc.Abstractions (1)
Formatters\OutputFormatterWriteContext.cs (1)
27
ObjectType
= objectType;
8 references to ObjectType
Microsoft.AspNetCore.Mvc.Core (6)
Formatters\HttpNoContentOutputFormatter.cs (2)
25
if (context.
ObjectType
== typeof(void) || context.
ObjectType
== typeof(Task))
Formatters\OutputFormatter.cs (1)
106
if (!CanWriteType(context.
ObjectType
))
Formatters\StringOutputFormatter.cs (1)
33
if (context.
ObjectType
== typeof(string) || context.Object is string)
Formatters\SystemTextJsonOutputFormatter.cs (2)
75
if (context.
ObjectType
is not null)
77
var declaredTypeJsonInfo = SerializerOptions.GetTypeInfo(context.
ObjectType
);
Microsoft.AspNetCore.Mvc.Formatters.Xml (2)
XmlDataContractSerializerOutputFormatter.cs (1)
228
var valueType = context.
ObjectType
;
XmlSerializerOutputFormatter.cs (1)
207
var valueType = context.
ObjectType
!;