The X.509 RevocationMode.
Namespace: Microsoft.IdentityModel.Configuration
Assembly: Microsoft.IdentityModel (in
microsoft.identitymodel.dll)
Usage
Syntax
Visual Basic |
<ConfigurationPropertyAttribute("revocationMode", IsRequired:=False, DefaultValue:=X509RevocationMode.Online)> _
<TypeConverterAttribute(GetType(X509RevocationModeConverter))> _
Public Property RevocationMode As X509RevocationMode
|
C# |
[ConfigurationPropertyAttribute("revocationMode", IsRequired=false, DefaultValue=X509RevocationMode.Online)]
[TypeConverterAttribute(typeof(X509RevocationModeConverter))]
public X509RevocationMode RevocationMode { get; set; }
|
C++ |
[ConfigurationPropertyAttribute(L"revocationMode", IsRequired=false, DefaultValue=X509RevocationMode::Online)]
[TypeConverterAttribute(typeof(X509RevocationModeConverter))]
public:
property X509RevocationMode RevocationMode {
X509RevocationMode get ();
void set (X509RevocationMode value);
}
|
J# |
/** @property */
public X509RevocationMode get_RevocationMode ()
/** @property */
public void set_RevocationMode (X509RevocationMode value)
|
JScript |
public function get RevocationMode () : X509RevocationMode
public function set RevocationMode (value : X509RevocationMode)
|
Exceptions
Remarks
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 Server 2003, Windows Vista
Target Platforms
Windows Server 2008, Windows Vista, Not tested on Windows XP
See Also