StreamResult 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
| StreamResult() |
Zero-argument default constructor. |
| StreamResult(File) |
Construct a StreamResult from a File. |
| StreamResult(Writer) |
Construct a StreamResult from a character stream. |
| StreamResult(Stream) |
Construct a StreamResult from a byte stream. |
| StreamResult(String) |
Construct a StreamResult from a URL. |
| StreamResult(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
StreamResult()
Zero-argument default constructor.
[Android.Runtime.Register(".ctor", "()V", "")]
public StreamResult ();
- Attributes
Remarks
Java documentation for javax.xml.transform.stream.StreamResult.StreamResult().
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
StreamResult(File)
Construct a StreamResult from a File.
[Android.Runtime.Register(".ctor", "(Ljava/io/File;)V", "")]
public StreamResult (Java.IO.File? f);
[<Android.Runtime.Register(".ctor", "(Ljava/io/File;)V", "")>]
new Javax.Xml.Transform.Stream.StreamResult : Java.IO.File -> Javax.Xml.Transform.Stream.StreamResult
Parameters
- f
- File
Must a non-null File reference.
- Attributes
Remarks
Java documentation for javax.xml.transform.stream.StreamResult.StreamResult(java.io.File).
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
StreamResult(Writer)
Construct a StreamResult from a character stream.
[Android.Runtime.Register(".ctor", "(Ljava/io/Writer;)V", "")]
public StreamResult (Java.IO.Writer? writer);
[<Android.Runtime.Register(".ctor", "(Ljava/io/Writer;)V", "")>]
new Javax.Xml.Transform.Stream.StreamResult : Java.IO.Writer -> Javax.Xml.Transform.Stream.StreamResult
Parameters
- writer
- Writer
A valid Writer reference.
- Attributes
Remarks
Java documentation for javax.xml.transform.stream.StreamResult.StreamResult(java.io.Writer).
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
StreamResult(Stream)
Construct a StreamResult from a byte stream.
[Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;)V", "")]
public StreamResult (System.IO.Stream? outputStream);
[<Android.Runtime.Register(".ctor", "(Ljava/io/OutputStream;)V", "")>]
new Javax.Xml.Transform.Stream.StreamResult : System.IO.Stream -> Javax.Xml.Transform.Stream.StreamResult
Parameters
- outputStream
- Stream
A valid OutputStream reference.
- Attributes
Remarks
Java documentation for javax.xml.transform.stream.StreamResult.StreamResult(java.io.OutputStream).
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
StreamResult(String)
Construct a StreamResult from a URL.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public StreamResult (string? systemId);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Javax.Xml.Transform.Stream.StreamResult : string -> Javax.Xml.Transform.Stream.StreamResult
Parameters
- systemId
- String
Must be a String that conforms to the URI syntax.
- Attributes
Remarks
Java documentation for javax.xml.transform.stream.StreamResult.StreamResult(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
StreamResult(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected StreamResult (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Javax.Xml.Transform.Stream.StreamResult : nativeint * Android.Runtime.JniHandleOwnership -> Javax.Xml.Transform.Stream.StreamResult
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.