Files
hcs/Hcs.ClientNet/GostCryptography/Xml/GetIdElementDelegate.cs

12 lines
509 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Xml;
namespace GostCryptography.Xml
{
/// <summary>
/// Возвращает XML-элемент с указанным идентификатором
/// </summary>
/// <param name="document">Документ для поиска идентификатора элемента</param>
/// <param name="idValue">Значение идентификатора элемента</param>
public delegate XmlElement GetIdElementDelegate(XmlDocument document, string idValue);
}