docs: 完善文档

This commit is contained in:
Fu Diwei
2021-07-19 22:10:31 +08:00
parent 6ed1040685
commit 165c25102a

View File

@@ -23,6 +23,6 @@ var request = new Models.QueryCertificatesRequest();
var response = await client.ExecuteQueryCertificatesAsync(request); var response = await client.ExecuteQueryCertificatesAsync(request);
string cert = response.CertificateList.First().EncryptCertificate.CipherText; // 此时仍是密文 string cert = response.CertificateList.First().EncryptCertificate.CipherText; // 此时仍是密文
client.DecryptResponseEncryptedData(response); client.DecryptResponseEncryptedData(ref response);
string cert = response.CertificateList.First().EncryptCertificate.CipherText; // 此时已是明文 string cert = response.CertificateList.First().EncryptCertificate.CipherText; // 此时已是明文
``` ```