RecyclableMemoryStreamManager.UsageReportEventArgs class

December 6, 2023 · View on GitHub

Arguments for the UsageReport event.

public sealed class UsageReportEventArgs : EventArgs
parameterdescription
smallPoolInUseBytesBytes from the small pool currently in use.
smallPoolFreeBytesBytes from the small pool currently available.
largePoolInUseBytesBytes from the large pool currently in use.
largePoolFreeBytesBytes from the large pool currently available.

Public Members

namedescription
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