10 instantiations of InsufficientMemoryException
System.Diagnostics.PerformanceCounter (1)
System\Diagnostics\PerformanceData\CounterSetInstanceCounterDataSet.cs (1)
128throw new InsufficientMemoryException(SR.Format(SR.Perflib_InsufficientMemory_InstanceCounterBlock, _instance._counterSet._counterSet, _instance._instName));
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\MemoryFailPoint.cs (3)
155throw new InsufficientMemoryException(SR.InsufficientMemory_MemFailPoint_TooBig); 245InsufficientMemoryException e = new InsufficientMemoryException(SR.InsufficientMemory_MemFailPoint); 257InsufficientMemoryException e = new InsufficientMemoryException(SR.InsufficientMemory_MemFailPoint_VAFrag);
System.ServiceModel.NetTcp (2)
System\ServiceModel\Channels\SocketConnection.cs (2)
851return new InsufficientMemoryException(SR.TcpConnectNoBufs, innerException); 857return new InsufficientMemoryException(SR.InsufficentMemory, socketException);
System.ServiceModel.Primitives (2)
Internals\System\Runtime\Fx.cs (2)
367new InsufficientMemoryException(InternalSR.BufferAllocationFailed(size), exception)); 382new InsufficientMemoryException(InternalSR.BufferAllocationFailed(size * sizeof(char)), exception));
System.ServiceModel.UnixDomainSocket (2)
System\ServiceModel\Channels\SocketConnection.cs (2)
816return new InsufficientMemoryException(SR.UDSConnectNoBufs, innerException); 822return new InsufficientMemoryException(SR.InsufficentMemory, socketException);
9 references to InsufficientMemoryException
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
300[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.InsufficientMemoryException))]
netstandard (1)
netstandard.cs (1)
876[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.InsufficientMemoryException))]
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\MemoryFailPoint.cs (2)
245InsufficientMemoryException e = new InsufficientMemoryException(SR.InsufficientMemory_MemFailPoint); 257InsufficientMemoryException e = new InsufficientMemoryException(SR.InsufficientMemory_MemFailPoint_VAFrag);
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\ExceptionUtility.cs (1)
16if ((exception is OutOfMemoryException && !(exception is InsufficientMemoryException)) ||
System.Runtime (1)
src\runtime\artifacts\obj\System.Runtime\Release\net11.0\System.Runtime.Forwards.cs (1)
280[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.InsufficientMemoryException))]
System.Runtime.Serialization.Schema (1)
System\Runtime\Serialization\Schema\DiagnosticUtility.cs (1)
18if ((exception is OutOfMemoryException && !(exception is InsufficientMemoryException)) ||
System.ServiceModel.Federation (1)
System\Runtime\Fx.cs (1)
15if (exception is OutOfMemoryException && !(exception is InsufficientMemoryException))
System.ServiceModel.Primitives (1)
Internals\System\Runtime\Fx.cs (1)
188(exception is OutOfMemoryException && !(exception is InsufficientMemoryException)) ||