MimeKit.Cryptography.X509CertificateDatabase.Update C# (CSharp) Method

Update() public method

Update the specified certificate record.
Updates the specified fields of the record in the database.
/// is null. ///
public Update ( X509CertificateRecord record, X509CertificateRecordFields fields ) : void
record X509CertificateRecord The certificate record.
fields X509CertificateRecordFields The fields to update.
return void
		public void Update (X509CertificateRecord record, X509CertificateRecordFields fields)
		{
			if (record == null)
				throw new ArgumentNullException ("record");

			using (var command = GetUpdateCommand (record, fields)) {
				command.ExecuteNonQuery ();
			}
		}

Same methods

X509CertificateDatabase::Update ( X509CrlRecord record ) : void