Poznámka:
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
Updated: July 2010
Returns the size of the strong name signature. StrongNameSignatureSize is typically used by compilers to determine how much space to reserve in the file when creating a delay-signed assembly.
This function has been deprecated in the .NET Framework version 4. Use the ICLRStrongName::StrongNameSignatureSize method instead.
BOOLEAN StrongNameSignatureSize (
[in] BYTE *pbPublicKeyBlob,
[in] ULONG cbPublicKeyBlob,
[in] DWORD *pcbSize
);
Parameters
pbPublicKeyBlob
[in] A structure of type PublicKeyBlob that contains the public portion of the key pair used to generate the strong name signature.cbPublicKeyBlob
[in] The size, in bytes, of pbPublicKeyBlob.pcbSize
[in] The number of bytes required to store the strong name signature.
Return Value
true on successful completion; otherwise, false.
Remarks
If the StrongNameSignatureSize function does not complete successfully, call the StrongNameErrorInfo function to retrieve the last generated error.
Requirements
Platforms: See .NET Framework System Requirements.
Header: StrongName.h
Library: Included as a resource in MsCorEE.dll
.NET Framework Versions: 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1, 1.0
See Also
Reference
ICLRStrongName::StrongNameSignatureSize Method
Change History
Date |
History |
Reason |
|---|---|---|
|
July 2010 |
Added link to recommended alternative. |
Information enhancement. |