PKIXParameters.AnyPolicyInhibited 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.
Checks whether the any policy OID should be processed if it is included in a certificate. -or- Sets state to determine if the any policy OID should be processed if it is included in a certificate.
public virtual bool AnyPolicyInhibited { [Android.Runtime.Register("isAnyPolicyInhibited", "()Z", "GetIsAnyPolicyInhibitedHandler")] get; [Android.Runtime.Register("setAnyPolicyInhibited", "(Z)V", "GetSetAnyPolicyInhibited_ZHandler")] set; }
[<get: Android.Runtime.Register("isAnyPolicyInhibited", "()Z", "GetIsAnyPolicyInhibitedHandler")>]
[<set: Android.Runtime.Register("setAnyPolicyInhibited", "(Z)V", "GetSetAnyPolicyInhibited_ZHandler")>]
member this.AnyPolicyInhibited : bool with get, set
Property Value
true
if the any policy OID is inhibited,
false
otherwise
- Attributes
Remarks
Property getter documentation:
Checks whether the any policy OID should be processed if it is included in a certificate.
Java documentation for java.security.cert.PKIXParameters.isAnyPolicyInhibited()
.
Property setter documentation:
Sets state to determine if the any policy OID should be processed if it is included in a certificate. By default, the any policy OID is not inhibited (#isAnyPolicyInhibited isAnyPolicyInhibited()
returns false
).
Java documentation for java.security.cert.PKIXParameters.setAnyPolicyInhibited(boolean)
.
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.