Manifest 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
Manifest() |
Constructs a new, empty Manifest. |
Manifest(Manifest) |
Constructs a new Manifest that is a copy of the specified Manifest. |
Manifest(Stream) |
Constructs a new Manifest from the specified input stream. |
Manifest(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
Manifest()
Constructs a new, empty Manifest.
[Android.Runtime.Register(".ctor", "()V", "")]
public Manifest ();
- Attributes
Remarks
Constructs a new, empty Manifest.
Java documentation for java.util.jar.Manifest.Manifest()
.
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
Manifest(Manifest)
Constructs a new Manifest that is a copy of the specified Manifest.
[Android.Runtime.Register(".ctor", "(Ljava/util/jar/Manifest;)V", "")]
public Manifest (Java.Util.Jar.Manifest? man);
[<Android.Runtime.Register(".ctor", "(Ljava/util/jar/Manifest;)V", "")>]
new Java.Util.Jar.Manifest : Java.Util.Jar.Manifest -> Java.Util.Jar.Manifest
Parameters
- man
- Manifest
the Manifest to copy
- Attributes
Remarks
Constructs a new Manifest that is a copy of the specified Manifest.
Java documentation for java.util.jar.Manifest.Manifest(java.util.jar.Manifest)
.
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
Manifest(Stream)
Constructs a new Manifest from the specified input stream.
[Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")]
public Manifest (System.IO.Stream? is);
[<Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")>]
new Java.Util.Jar.Manifest : System.IO.Stream -> Java.Util.Jar.Manifest
Parameters
- is
- Stream
the input stream containing manifest data
- Attributes
Exceptions
if an IO error occurs while creating this Manifest
Remarks
Constructs a new Manifest from the specified input stream.
Java documentation for java.util.jar.Manifest.Manifest(java.io.InputStream)
.
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
Manifest(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected Manifest (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Util.Jar.Manifest : nativeint * Android.Runtime.JniHandleOwnership -> Java.Util.Jar.Manifest
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.