RecyclableMemoryStreamManager.UsageReportEventArgs class
December 6, 2023 · View on GitHub
Arguments for the UsageReport event.
public sealed class UsageReportEventArgs : EventArgs
| parameter | description |
|---|---|
| smallPoolInUseBytes | Bytes from the small pool currently in use. |
| smallPoolFreeBytes | Bytes from the small pool currently available. |
| largePoolInUseBytes | Bytes from the large pool currently in use. |
| largePoolFreeBytes | Bytes from the large pool currently available. |
Public Members
| name | description |
|---|---|
| UsageReportEventArgs(…) | Arguments for the UsageReport event. |
| LargePoolFreeBytes { get; } | Bytes from the large pool currently available. |
| LargePoolInUseBytes { get; } | Bytes from the large pool currently in use. |
| SmallPoolFreeBytes { get; } | Bytes from the small pool currently available. |
| SmallPoolInUseBytes { get; } | Bytes from the small pool currently in use. |
Remarks
Initializes a new instance of the UsageReportEventArgs class.
See Also
- class RecyclableMemoryStreamManager
- namespace Microsoft.IO