Gurux.DLMS.Objects.GXDLMSSecuritySetup.ImportCertificate C# (CSharp) Method

ImportCertificate() public method

Imports an X.509 v3 certificate of a public key.
public ImportCertificate ( Gurux.DLMS.GXDLMSClient client, byte key ) : byte[][]
client Gurux.DLMS.GXDLMSClient DLMS client that is used to generate action.
key byte Public key.
return byte[][]
        public byte[][] ImportCertificate(GXDLMSClient client, byte[] key)
        {
            return client.Method(this, 6, key, DataType.OctetString);
        }