MachineIdentityManager Constructor ()
Initializes a new instance of the MachineIdentityManager class.
Namespace: Microsoft.WindowsServerSolutions.Devices.Identity
Assembly: MachineIdentityObjectModel (in MachineIdentityObjectModel.dll)
Syntax
public MachineIdentityManager()
public:
MachineIdentityManager()
Public Sub New
Examples
The following code example shows how to use a MachineIdentityManager object to revoke a certificate:
using( MachineIdentityManager MI = new MachineIdentityManager() )
{
MI.RevokeCert();
}
See Also
MachineIdentityManager Overload
MachineIdentityManager Class
Microsoft.WindowsServerSolutions.Devices.Identity Namespace
Return to top