JarEntry.GetCodeSigners Method
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.
Returns the CodeSigner
objects for this entry, or
null
if none.
[Android.Runtime.Register("getCodeSigners", "()[Ljava/security/CodeSigner;", "GetGetCodeSignersHandler")]
public virtual Java.Security.CodeSigner[]? GetCodeSigners ();
[<Android.Runtime.Register("getCodeSigners", "()[Ljava/security/CodeSigner;", "GetGetCodeSignersHandler")>]
abstract member GetCodeSigners : unit -> Java.Security.CodeSigner[]
override this.GetCodeSigners : unit -> Java.Security.CodeSigner[]
Returns
the CodeSigner
objects for this entry, or
null
if none.
- Attributes
Remarks
Returns the CodeSigner
objects for this entry, or null
if none. This method can only be called once the JarEntry
has been completely verified by reading from the entry input stream until the end of the stream has been reached. Otherwise, this method will return null
.
The returned array comprises all the code signers that have signed this entry.
Added in 1.5.
Java documentation for java.util.jar.JarEntry.getCodeSigners()
.
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.