public DescribeKeyResponse()

in Notation.Plugin.AzureKeyVault/Protocol/DescribeKey.cs [61:75]


        public DescribeKeyResponse(string keyId, string keySpec)
        {
            if (string.IsNullOrEmpty(keyId))
            {
                throw new ArgumentNullException(nameof(keyId), "KeyId must not be null or empty");
            }

            if (string.IsNullOrEmpty(keySpec))
            {
                throw new ArgumentNullException(nameof(keySpec), "KeySpec must not be null or empty");
            }

            KeyId = keyId;
            KeySpec = keySpec;
        }