Base:
property
Message
System.Exception.Message
7 references to Message
Microsoft.AspNetCore.Components.WebAssembly.Tests (3)
Hosting\WebAssemblyHostBuilderTest.cs (3)
103Assert.Contains("Cannot consume scoped service", exception.Message); 267Assert.Contains("circular dependency", exception.Message.ToLowerInvariant()); 300Assert.Contains("circular dependency", exception.Message.ToLowerInvariant());
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
HubConnectionTests.cs (1)
1897Assert.Contains("Negotiate Authentication doesn't work with HTTP/2 or higher.", ex.Message);
Microsoft.AspNetCore.SignalR.Client.Tests (1)
HttpConnectionTests.ConnectionLifecycle.cs (1)
160ex.Message);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\AggregateException.cs (2)
281throw new AggregateException(Message, unhandledExceptions.ToArray(), cloneExceptions: false); 335return new AggregateException(GetType() == typeof(AggregateException) ? base.Message : Message, flattenedExceptions.ToArray(), cloneExceptions: false);