DOMResult Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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
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
- 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
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.