X509Certificate.Import Method (Byte[], String, X509KeyStorageFlags)
Updated: September 2011
Populates the X509Certificate object using data from a byte array, a password, and flags for determining how the private key is imported.
Assembly: mscorlib (in mscorlib.dll)
[ComVisibleAttribute(false)] [PermissionSetAttribute(SecurityAction.InheritanceDemand, Unrestricted = true)] public virtual void Import( byte[] rawData, string password, X509KeyStorageFlags keyStorageFlags )
Parameters
- rawData
- Type: System.Byte[]
A byte array containing data from an X.509 certificate.
- password
- Type: System.String
The password required to access the X.509 certificate data.
- keyStorageFlags
- Type: System.Security.Cryptography.X509Certificates.X509KeyStorageFlags
A bitwise combination of the enumeration values that control where and how to import the certificate.
| Exception | Condition |
|---|---|
| ArgumentException |
The rawData parameter is null. -or- The length of the rawData parameter is 0. |
This method can be used to populate an X509Certificate object using a password for the certificate represented by the byte array. The X509KeyStorageFlags value can be used to control where and how the private key is imported.
-
SecurityCriticalAttribute
requires full trust for the immediate caller. This class cannot be used by partially trusted or transparent code.
-
InheritanceDemand
for full trust for inheritors. This member cannot be inherited by partially trusted code.
-
KeyContainerPermission
for permission to create a key container. Security action: Demand. Associated enumeration: KeyContainerPermissionFlags.Create
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.