From f1a0f9c5924c594da051d90a912e6fc334c6030c Mon Sep 17 00:00:00 2001 From: Elena Quijano Date: Thu, 5 Sep 2024 15:45:35 -0700 Subject: [PATCH] fixed sample code --- .../src/Yubico/YubiKey/Piv/Commands/GetMetadataCommand.cs | 2 +- .../src/Yubico/YubiKey/Piv/Commands/GetMetadataResponse.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Yubico.YubiKey/src/Yubico/YubiKey/Piv/Commands/GetMetadataCommand.cs b/Yubico.YubiKey/src/Yubico/YubiKey/Piv/Commands/GetMetadataCommand.cs index e43633fc..b17be070 100644 --- a/Yubico.YubiKey/src/Yubico/YubiKey/Piv/Commands/GetMetadataCommand.cs +++ b/Yubico.YubiKey/src/Yubico/YubiKey/Piv/Commands/GetMetadataCommand.cs @@ -41,7 +41,7 @@ namespace Yubico.YubiKey.Piv.Commands /// GetMetadataResponse metadataResponse = connection.SendCommand(metadataCommand);
/// if (metadataResponse.Status == ResponseStatus.Success) /// { - /// PivKeyMetadata keyData = metadataResponse.GetData(); + /// PivMetadata keyData = metadataResponse.GetData(); /// } /// /// diff --git a/Yubico.YubiKey/src/Yubico/YubiKey/Piv/Commands/GetMetadataResponse.cs b/Yubico.YubiKey/src/Yubico/YubiKey/Piv/Commands/GetMetadataResponse.cs index 23d3aedd..2a6a7451 100644 --- a/Yubico.YubiKey/src/Yubico/YubiKey/Piv/Commands/GetMetadataResponse.cs +++ b/Yubico.YubiKey/src/Yubico/YubiKey/Piv/Commands/GetMetadataResponse.cs @@ -38,7 +38,7 @@ namespace Yubico.YubiKey.Piv.Commands /// GetMetadataResponse metadataResponse = connection.SendCommand(metadataCommand);
/// if (metadataResponse.Status == ResponseStatus.Success) /// { - /// PivKeyMetadata keyData = metadataResponse.GetData(); + /// PivMetadata keyData = metadataResponse.GetData(); /// } /// ///