MutationObserver Constructor |
Constructs a MutationObserver object and sets its
MutationCallback to callback.
The callback is invoked with a list of MutationRecord objects as first argument and the constructed MutationObserver object as second argument. It is invoked after nodes registered with the
[!:Observe(Node, IMutationObserverInit)] method, are mutated.
Namespace: Aspose.Html.Dom.MutationsAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 20.3
Syntaxpublic MutationObserver(
MutationCallback callback
)
Public Sub New (
callback As MutationCallback
)
public:
MutationObserver(
MutationCallback^ callback
)
new :
callback : MutationCallback -> MutationObserver
Parameters
- callback
- Type: Aspose.Html.Dom.MutationsMutationCallback
The callback.
See Also