ManagementPackAssemblyWriterSettings.DelaySign Property
Gets or sets a boolean value used in the DelaySign flag when the assembly is created. Set this value to False if you want the assembly will be fully signed, and set this value to True if you want to place the public key in the assembly and reserve space for the signed hash.
Namespace: Microsoft.EnterpriseManagement.Configuration.IO
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)
Usage
'Usage
Dim instance As ManagementPackAssemblyWriterSettings
Dim value As Boolean
value = instance.DelaySign
instance.DelaySign = value
Syntax
'Declaration
Public Property DelaySign As Boolean
public bool DelaySign { get; set; }
public:
property bool DelaySign {
bool get ();
void set (bool value);
}
/** @property */
public boolean get_DelaySign ()
/** @property */
public void set_DelaySign (boolean value)
public function get DelaySign () : boolean
public function set DelaySign (value : boolean)
Property Value
Returns a boolean value used in the DelaySign flag when the assembly is created.
Remarks
When you request a fully signed assembly, the compiler hashes the file that contains the manifest (assembly metadata) and signs that hash with the private key. The resulting digital signature is stored in the file that contains the manifest. When an assembly is delay signed, the compiler does not compute and store the signature but reserves space in the file so the signature can be added later.
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 2008, Windows Vista, Windows Server 2003, and Windows XP
Target Platforms
Windows Server 2008,Windows Server 2003,Windows Vista,Windows XP
See Also
Reference
ManagementPackAssemblyWriterSettings Class
ManagementPackAssemblyWriterSettings Members
Microsoft.EnterpriseManagement.Configuration.IO Namespace