X509SigningMethod.UseSKI Property

 

Gets or sets a Boolean that indicates whether to use subject key identifiers (SKI) in the KeyInfo clause for XML digital signatures produced using this method.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

public bool UseSKI { get; set; }
public:
property bool UseSKI {
    bool get();
    void set(bool value);
}
member UseSKI : bool with get, set
Public Property UseSKI As Boolean

Property Value

Type: System.Boolean

true if SKIs are to be used; otherwise false. The default value for this property is false. If false, the entire certificate will be included in the KeyInfo clause.

Remarks

If the subject key identifier extension is absent from the identified certificate, this value is ignored.

See Also

X509SigningMethod Class
System.Web.Security.SingleSignOn Namespace

Return to top