Skip to content
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.

sp core library.idisposable.isdisposed

John Nguyen edited this page Apr 22, 2021 · 2 revisions

Home > @microsoft/sp-core-library > IDisposable > isDisposed

IDisposable.isDisposed property

Returns true if the dispose() method has been called. Once an object is disposed, it remains in this state permanently.

Signature:

isDisposed: boolean;

Remarks

After the object has been disposed, do not call its methods or access its properties.

Clone this wiki locally