X509CertSelector.Issuer Property
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 issuer criterion as an X500Principal
. -or- Sets the issuer criterion.
public virtual Javax.Security.Auth.X500.X500Principal? Issuer { [Android.Runtime.Register("getIssuer", "()Ljavax/security/auth/x500/X500Principal;", "GetGetIssuerHandler")] get; [Android.Runtime.Register("setIssuer", "(Ljavax/security/auth/x500/X500Principal;)V", "GetSetIssuer_Ljavax_security_auth_x500_X500Principal_Handler")] set; }
[<get: Android.Runtime.Register("getIssuer", "()Ljavax/security/auth/x500/X500Principal;", "GetGetIssuerHandler")>]
[<set: Android.Runtime.Register("setIssuer", "(Ljavax/security/auth/x500/X500Principal;)V", "GetSetIssuer_Ljavax_security_auth_x500_X500Principal_Handler")>]
member this.Issuer : Javax.Security.Auth.X500.X500Principal with get, set
Property Value
the required issuer distinguished name as X500Principal
(or null
)
- Attributes
Remarks
Property getter documentation:
Returns the issuer criterion as an X500Principal
. This distinguished name must match the issuer distinguished name in the X509Certificate
. If null
, the issuer criterion is disabled and any issuer distinguished name will do.
Added in 1.5.
Java documentation for java.security.cert.X509CertSelector.getIssuer()
.
Property setter documentation:
Sets the issuer criterion. The specified distinguished name must match the issuer distinguished name in the X509Certificate
. If null
, any issuer distinguished name will do.
Added in 1.5.
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.