Click or drag to resize

TemporaryDisabler Methods

The TemporaryDisabler type exposes the following members.

Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Protected methodOnAboutToBeResumed Is called when the suspend level is still 1 (one), but is about to fall to zero, i.e. shortly before the call to OnResume. This function is not called before OnResumeSilently!
(Inherited from SuspendableObject)
Protected methodOnResume Is called when the suppress level falls down from 1 to zero and the event count is != 0. Per default, the resume event handler is called that you provided in the constructor.
(Overrides SuspendableObjectOnResume)
Protected methodOnResumeSilently Is called when the suspend level falls down from 1 to zero by a call to ResumeSilently. The implementation should delete any accumulated events, should also disarm the suspendTokens of the childs of this object, and should not fire any Changed events nor set the change state of the object to dirty.
(Inherited from SuspendableObject)
Protected methodOnSuspended Called when the suspend level has just gone from 0 to 1, i.e. the object was suspended.
(Inherited from SuspendableObject)
Public methodResume(ISuspendToken) Decrease the suspend level by disposing the suppress token. The token will fire the Resume event if the suppress level falls to zero.
(Inherited from SuspendableObject)
Public methodResume(ISuspendToken, EventFiring) Decrease the suspend level by disposing the suppress token. The token will fire the Resume event if the suppress level falls to zero. You can suppress the resume event by setting argument 'suppressResumeEvent' to true.
(Inherited from SuspendableObject)
Public methodResumeShortlyGetToken Resumes the events of this class as long as you hold the returned resume token. The original state (the suspenended state) is restored when you dispose the resume token.
(Inherited from SuspendableObject)
Public methodSuspendGetToken Increase the SuspendLevel by one, and return a token that, if disposed, will resume the object.
(Inherited from SuspendableObject)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
See Also