本文整理汇总了C#中Catalog.SaveXml方法的典型用法代码示例。如果您正苦于以下问题:C# Catalog.SaveXml方法的具体用法?C# Catalog.SaveXml怎么用?C# Catalog.SaveXml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Catalog
的用法示例。
在下文中一共展示了Catalog.SaveXml方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SaveCatalog
/// <summary>
/// Saves a catalog.
/// </summary>
/// <param name="catalog">The catalog to save.</param>
/// <exception cref="IOException">A file could not be read or written or the GnuPG could not be launched or the catalog file could not be written.</exception>
/// <exception cref="UnauthorizedAccessException">Read or write access to a catalog file is not permitted.</exception>
/// <exception cref="KeyNotFoundException">An OpenPGP key could not be found.</exception>
private void SaveCatalog(Catalog catalog)
{
if (_xmlSign)
{
var openPgp = OpenPgpFactory.CreateDefault();
var signedCatalog = new SignedCatalog(catalog, openPgp.GetSecretKey(_key));
while (true)
{
try
{
signedCatalog.Save(_catalogFile, _openPgpPassphrase);
break; // Exit loop if passphrase is correct
}
catch (WrongPassphraseException ex)
{
// Continue loop if passhrase is incorrect
if (!string.IsNullOrEmpty(_openPgpPassphrase)) Log.Error(ex);
}
// Ask for passphrase to unlock secret key if we were unable to save without it
_openPgpPassphrase = CliUtils.ReadPassword(string.Format(Resources.AskForPassphrase, signedCatalog.SecretKey));
}
}
else catalog.SaveXml(_catalogFile);
}