Gets the disposition of the certificate request.
Namespace: Microsoft.Clm.Shared
Assembly: Microsoft.Clm.Shared (in microsoft.clm.shared.dll)

Usage

Visual Basic
Dim instance As CertificateRequestException
Dim value As Integer

value = instance.Disposition

Syntax

Visual Basic
Public ReadOnly Property Disposition As Integer
C#
public int Disposition { get; }
C++
public:
property int Disposition {
		int get ();
}
J#
/** @property */
public int get_Disposition ()
JScript
public function get Disposition () : int

Property Value

An integer value that indicates the disposition of the certificate request.

Remarks

This property contains the disposition value that was returned by the ICertRequest2::Submit method. The possible values are as follows:

Disposition value Description

CR_DISP_DENIED

The request was denied.

CR_DISP_ERROR

The request failed.

CR_DISP_INCOMPLETE

The request was not completed.

CR_DISP_ISSUED

The request was processed and the certificate has been issued.

CR_DISP_ISSUED_OUT_OF_BAND

The certificate was issued separately, independent of this request.

CR_DISP_UNDER_SUBMISSION

The request has been taken under submission.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows 2008 x64 Edition

Target Platforms

Windows XP SP3, Windows Vista SP1+, Windows 7, Windows Server 2008, Windows Server 2008 R2

See Also