X509CRLSelector.Issuers 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 issuerNames criterion. -or- Sets the issuerNames criterion.
public virtual System.Collections.Generic.ICollection<Javax.Security.Auth.X500.X500Principal>? Issuers { [Android.Runtime.Register("getIssuers", "()Ljava/util/Collection;", "GetGetIssuersHandler")] get; [Android.Runtime.Register("setIssuers", "(Ljava/util/Collection;)V", "GetSetIssuers_Ljava_util_Collection_Handler")] set; }
[<get: Android.Runtime.Register("getIssuers", "()Ljava/util/Collection;", "GetGetIssuersHandler")>]
[<set: Android.Runtime.Register("setIssuers", "(Ljava/util/Collection;)V", "GetSetIssuers_Ljava_util_Collection_Handler")>]
member this.Issuers : System.Collections.Generic.ICollection<Javax.Security.Auth.X500.X500Principal> with get, set
Property Value
an unmodifiable Collection of names
(or null)
- Attributes
Remarks
Property getter documentation:
Returns the issuerNames criterion. The issuer distinguished name in the X509CRL must match at least one of the specified distinguished names. If the value returned is null, any issuer distinguished name will do.
If the value returned is not null, it is a unmodifiable Collection of X500Principals.
Added in 1.5.
Java documentation for java.security.cert.X509CRLSelector.getIssuers().
Property setter documentation:
Sets the issuerNames criterion. The issuer distinguished name in the X509CRL must match at least one of the specified distinguished names. If null, any issuer distinguished name will do.
This method allows the caller to specify, with a single method call, the complete set of issuer names which X509CRLs may contain. The specified value replaces the previous value for the issuerNames criterion.
The names parameter (if not null) is a Collection of X500Principals.
Note that the names parameter can contain duplicate distinguished names, but they may be removed from the Collection of names returned by the #getIssuers getIssuers method.
Note that a copy is performed on the Collection to protect against subsequent modifications.
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.