Table of Contents

Class DocumentFragment

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The DocumentFragment interface represents a minimal document object that has no parent.

[Value("DocumentFragment")]
public class DocumentFragment : Node, NonElementParentNode, ParentNode
Inheritance
DocumentFragment
Implements
Derived
Inherited Members

Remarks

It is used as a lightweight version of Document that stores a segment of a document structure comprised of nodes just like a standard document. The key difference is due to the fact that the document fragment isn't part of the active document tree structure. Changes made to the fragment don't affect the document.

See also on MDN

Constructors

DocumentFragment()

The DocumentFragment() constructor returns a new, empty
DocumentFragment object.

public DocumentFragment()

Remarks