DOMResult Constructors

Definition

Overloads

DOMResult()

Zero-argument default constructor.

DOMResult(INode)

Use a DOM node to create a new output target.

DOMResult(INode, INode)

Use a DOM node to create a new output target specifying the child node where the result nodes should be inserted before.

DOMResult(INode, String)

Use a DOM node to create a new output target with the specified System ID.

DOMResult(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

DOMResult(INode, INode, String)

Use a DOM node to create a new output target specifying the child node where the result nodes should be inserted before and the specified System ID.

DOMResult()

Zero-argument default constructor.

[Android.Runtime.Register(".ctor", "()V", "")]
public DOMResult ();
Attributes

Remarks

Java documentation for javax.xml.transform.dom.DOMResult.DOMResult().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

DOMResult(INode)

Use a DOM node to create a new output target.

[Android.Runtime.Register(".ctor", "(Lorg/w3c/dom/Node;)V", "")]
public DOMResult (Org.W3c.Dom.INode? node);
[<Android.Runtime.Register(".ctor", "(Lorg/w3c/dom/Node;)V", "")>]
new Javax.Xml.Transform.Dom.DOMResult : Org.W3c.Dom.INode -> Javax.Xml.Transform.Dom.DOMResult

Parameters

node
INode

The DOM node that will contain the result tree.

Attributes

Remarks

Java documentation for javax.xml.transform.dom.DOMResult.DOMResult(org.w3c.dom.Node).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

DOMResult(INode, INode)

Use a DOM node to create a new output target specifying the child node where the result nodes should be inserted before.

[Android.Runtime.Register(".ctor", "(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V", "")]
public DOMResult (Org.W3c.Dom.INode? node, Org.W3c.Dom.INode? nextSibling);
[<Android.Runtime.Register(".ctor", "(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)V", "")>]
new Javax.Xml.Transform.Dom.DOMResult : Org.W3c.Dom.INode * Org.W3c.Dom.INode -> Javax.Xml.Transform.Dom.DOMResult

Parameters

node
INode

The DOM node that will contain the result tree.

nextSibling
INode

The child node where the result nodes should be inserted before.

Attributes

Exceptions

If nextSibling is not a sibling of node.

If node is null and nextSibling is not null.

Remarks

Java documentation for javax.xml.transform.dom.DOMResult.DOMResult(org.w3c.dom.Node, org.w3c.dom.Node).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

DOMResult(INode, String)

Use a DOM node to create a new output target with the specified System ID.

[Android.Runtime.Register(".ctor", "(Lorg/w3c/dom/Node;Ljava/lang/String;)V", "")]
public DOMResult (Org.W3c.Dom.INode? node, string? systemId);
[<Android.Runtime.Register(".ctor", "(Lorg/w3c/dom/Node;Ljava/lang/String;)V", "")>]
new Javax.Xml.Transform.Dom.DOMResult : Org.W3c.Dom.INode * string -> Javax.Xml.Transform.Dom.DOMResult

Parameters

node
INode

The DOM node that will contain the result tree.

systemId
String

The system identifier which may be used in association with this node.

Attributes

Remarks

Java documentation for javax.xml.transform.dom.DOMResult.DOMResult(org.w3c.dom.Node, java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

DOMResult(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected DOMResult (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Javax.Xml.Transform.Dom.DOMResult : nativeint * Android.Runtime.JniHandleOwnership -> Javax.Xml.Transform.Dom.DOMResult

Parameters

javaReference
IntPtr

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

DOMResult(INode, INode, String)

Use a DOM node to create a new output target specifying the child node where the result nodes should be inserted before and the specified System ID.

[Android.Runtime.Register(".ctor", "(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;Ljava/lang/String;)V", "")]
public DOMResult (Org.W3c.Dom.INode? node, Org.W3c.Dom.INode? nextSibling, string? systemId);
[<Android.Runtime.Register(".ctor", "(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;Ljava/lang/String;)V", "")>]
new Javax.Xml.Transform.Dom.DOMResult : Org.W3c.Dom.INode * Org.W3c.Dom.INode * string -> Javax.Xml.Transform.Dom.DOMResult

Parameters

node
INode

The DOM node that will contain the result tree.

nextSibling
INode

The child node where the result nodes should be inserted before.

systemId
String

The system identifier which may be used in association with this node.

Attributes

Exceptions

If nextSibling is not a sibling of node.

If node is null and nextSibling is not null.

Remarks

Java documentation for javax.xml.transform.dom.DOMResult.DOMResult(org.w3c.dom.Node, org.w3c.dom.Node, java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to