AspNetMemoryMonitor.Subscribe Method

Definition

Subscribes an observer in addition to the default observer.

Overloads

Subscribe(IObserver<LowPhysicalMemoryInfo>)

Subscribes a low-memory observer in addition to the default low-memory observer.

Subscribe(IObserver<RecycleLimitInfo>)

Subscribes a recycle limit observer in addition to the default recycle limit observer.

Subscribe(IObserver<LowPhysicalMemoryInfo>)

Subscribes a low-memory observer in addition to the default low-memory observer.

public:
 virtual IDisposable ^ Subscribe(IObserver<System::Web::Hosting::LowPhysicalMemoryInfo ^> ^ observer);
public IDisposable Subscribe (IObserver<System.Web.Hosting.LowPhysicalMemoryInfo> observer);
abstract member Subscribe : IObserver<System.Web.Hosting.LowPhysicalMemoryInfo> -> IDisposable
override this.Subscribe : IObserver<System.Web.Hosting.LowPhysicalMemoryInfo> -> IDisposable
Public Function Subscribe (observer As IObserver(Of LowPhysicalMemoryInfo)) As IDisposable

Parameters

observer
IObserver<LowPhysicalMemoryInfo>

The low-memory observer to subscribe to.

Returns

A reference to an interface that allows observers to stop receiving notifications before the provider has finished sending them.

Implements

Applies to

Subscribe(IObserver<RecycleLimitInfo>)

Subscribes a recycle limit observer in addition to the default recycle limit observer.

public:
 virtual IDisposable ^ Subscribe(IObserver<System::Web::Hosting::RecycleLimitInfo ^> ^ observer);
public IDisposable Subscribe (IObserver<System.Web.Hosting.RecycleLimitInfo> observer);
abstract member Subscribe : IObserver<System.Web.Hosting.RecycleLimitInfo> -> IDisposable
override this.Subscribe : IObserver<System.Web.Hosting.RecycleLimitInfo> -> IDisposable
Public Function Subscribe (observer As IObserver(Of RecycleLimitInfo)) As IDisposable

Parameters

observer
IObserver<RecycleLimitInfo>

The recycle limit observer to subscribe to.

Returns

A reference to an interface that allows observers to stop receiving notifications before the provider has finished sending them.

Implements

Applies to