21 instantiations of SerializableError
Microsoft.AspNetCore.Mvc.Core (3)
BadRequestObjectResult.cs (1)
33: base(new SerializableError(modelState))
ConflictObjectResult.cs (1)
33: base(new SerializableError(modelState))
UnprocessableEntityObjectResult.cs (1)
23: this(new SerializableError(modelState))
Microsoft.AspNetCore.Mvc.Core.Test (5)
SerializableErrorTests.cs (5)
20var serializableError = new SerializableError(modelState); 37var serializableError = new SerializableError(modelState); 52var serializableError = new SerializableError(modelState); 63new SerializableError(new ModelStateDictionary()); 75var serializableError = new SerializableError(modelState);
Microsoft.AspNetCore.Mvc.Formatters.Xml (1)
SerializableErrorWrapper.cs (1)
26SerializableError = new SerializableError();
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (9)
DelegatingEnumerableTest.cs (2)
34var error1 = new SerializableError(); 36var error2 = new SerializableError();
EnumerableWrapperProviderFactoryTest.cs (3)
12var serializableError = new SerializableError(); 65var serializableError = new SerializableError(); 118var serializableError = new SerializableError();
SerializableErrorWrapperProviderTest.cs (1)
27var serializableError = new SerializableError();
SerializableErrorWrapperTests.cs (3)
28var serializableError = new SerializableError 48var serializableError = new SerializableErrorWrapper(new SerializableError(new ModelStateDictionary())); 105var serializableError = new SerializableError(modelState);
XmlFormattersWebSite (3)
Controllers\IEnumerableController.cs (2)
52var error1 = new SerializableError(); 56var error2 = new SerializableError();
Controllers\SerializableErrorController.cs (1)
28return new ObjectResult(new SerializableError(ModelState));
72 references to SerializableError
ApiExplorerWebSite (4)
Controllers\ApiExplorerResponseTypeWithAttributeController.cs (4)
59[ProducesResponseType(typeof(SerializableError), 400)] 67[ProducesResponseType(typeof(SerializableError), 400)] 74[ProducesResponseType(typeof(SerializableError), 400)] 81[ProducesResponseType(typeof(SerializableError), 400)]
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (2)
ApiResponseTypeProviderTest.cs (2)
239new ProducesDefaultResponseTypeAttribute(typeof(SerializableError)), 253Assert.Equal(typeof(SerializableError), responseType.Type);
Microsoft.AspNetCore.Mvc.Core (2)
SerializableError.cs (2)
17/// Initializes a new instance of the <see cref="SerializableError"/> class. 25/// Creates a new instance of <see cref="SerializableError"/>.
Microsoft.AspNetCore.Mvc.Core.Test (16)
BadRequestObjectResultTests.cs (2)
31var errors = Assert.IsType<SerializableError>(badRequestObjectResult.Value);
ConflictObjectResultTest.cs (2)
31var errors = Assert.IsType<SerializableError>(conflictObjectResult.Value);
ControllerBaseTest.cs (6)
2061var errors = Assert.IsType<SerializableError>(result.Value); 2107var errors = Assert.IsType<SerializableError>(result.Value); 2154var errors = Assert.IsType<SerializableError>(result.Value);
SerializableErrorTests.cs (4)
20var serializableError = new SerializableError(modelState); 37var serializableError = new SerializableError(modelState); 52var serializableError = new SerializableError(modelState); 75var serializableError = new SerializableError(modelState);
UnprocessableEntityObjectResultTests.cs (2)
31var errors = Assert.IsType<SerializableError>(result.Value);
Microsoft.AspNetCore.Mvc.Formatters.Xml (9)
SerializableErrorWrapper.cs (2)
33public SerializableErrorWrapper(SerializableError error) 44public SerializableError SerializableError { get; }
SerializableErrorWrapperProvider.cs (3)
7/// Wraps the object of type <see cref="Microsoft.AspNetCore.Mvc.SerializableError"/>. 19var error = original as SerializableError;
SerializableErrorWrapperProviderFactory.cs (4)
7/// Creates an <see cref="IWrapperProvider"/> for the type <see cref="Microsoft.AspNetCore.Mvc.SerializableError"/>. 14/// <see cref="Microsoft.AspNetCore.Mvc.SerializableError"/>. 20/// <see cref="Microsoft.AspNetCore.Mvc.SerializableError"/>; otherwise <c>null</c>. 26if (context.DeclaredType == typeof(SerializableError))
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (28)
DelegatingEnumerableTest.cs (5)
34var error1 = new SerializableError(); 36var error2 = new SerializableError(); 39var delegatingEnumerable = new DelegatingEnumerable<SerializableErrorWrapper, SerializableError>( 60var errors = new SerializableError[] { }; 61var delegatingEnumerable = new DelegatingEnumerable<SerializableErrorWrapper, SerializableError>(
EnumerableWrapperProviderFactoryTest.cs (8)
12var serializableError = new SerializableError(); 33typeof(IEnumerable<SerializableError>), 35typeof(DelegatingEnumerable<SerializableErrorWrapper, SerializableError>) 65var serializableError = new SerializableError(); 86typeof(IEnumerable<SerializableError>), 88typeof(DelegatingEnumerable<SerializableErrorWrapper, SerializableError>) 118var serializableError = new SerializableError(); 136typeof(List<SerializableError>),
EnumerableWrapperProviderTest.cs (9)
11[InlineData(typeof(IEnumerable<SerializableError>), 12typeof(DelegatingEnumerable<SerializableErrorWrapper, SerializableError>))] 13[InlineData(typeof(IQueryable<SerializableError>), 14typeof(DelegatingEnumerable<SerializableErrorWrapper, SerializableError>))] 15[InlineData(typeof(ICollection<SerializableError>), 16typeof(DelegatingEnumerable<SerializableErrorWrapper, SerializableError>))] 17[InlineData(typeof(IList<SerializableError>), 18typeof(DelegatingEnumerable<SerializableErrorWrapper, SerializableError>))] 75[InlineData(typeof(List<SerializableError>))]
ProblemDetailsWrapperProviderFactoryTest.cs (1)
13var context = new WrapperProviderContext(typeof(SerializableError), isSerialization: true);
SerializableErrorWrapperProviderTest.cs (1)
27var serializableError = new SerializableError();
SerializableErrorWrapperTests.cs (3)
28var serializableError = new SerializableError 68var errors = wrapper.SerializableError; 105var serializableError = new SerializableError(modelState);
SerializableWrapperProviderFactoryTest.cs (1)
18new WrapperProviderContext(typeof(SerializableError), isSerialization));
Microsoft.AspNetCore.Mvc.FunctionalTests (4)
ApiExplorerTest.cs (4)
611var type2 = typeof(SerializableError).FullName; 643var type2 = typeof(SerializableError).FullName; 675var type2 = typeof(SerializableError).FullName; 707var type2 = typeof(SerializableError).FullName;
XmlFormattersWebSite (7)
Controllers\IEnumerableController.cs (5)
49public IEnumerable<SerializableError> SerializableErrors() 51List<SerializableError> errors = new List<SerializableError>(); 52var error1 = new SerializableError(); 56var error2 = new SerializableError();
Controllers\SerializableErrorController.cs (2)
32public SerializableError LogErrors([FromBody] SerializableError serializableError)