Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AsciiArmorHeader"/> class.
 /// </summary>
 /// <param name="contentType">Type of the content.</param>
 /// <param name="version">The version.</param>
 /// <param name="comment">The comment.</param>
 /// <param name="charset">The character set.</param>
 /// <param name="messageId">The message ID.</param>
 /// <param name="hash">The hash.</param>
 public AsciiArmorHeader(PGPContentType contentType, string version, string comment, string charset, string messageId, string hash)
 {
     ContentType = contentType;
     Version = version;
     Comment = comment;
     Charset = charset;
     MessageId = messageId;
     Hash = hash;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AsciiArmorHeader"/> class.
 /// </summary>
 /// <param name="contentType">Type of the content.</param>
 /// <param name="version">The version.</param>
 /// <param name="comment">The comment.</param>
 /// <param name="charset">The character set.</param>
 /// <param name="messageId">The message ID.</param>
 /// <param name="hash">The hash.</param>
 public AsciiArmorHeader(PGPContentType contentType, string version, string comment, string charset, string messageId, string hash)
 {
     ContentType = contentType;
     Version     = version;
     Comment     = comment;
     Charset     = charset;
     MessageId   = messageId;
     Hash        = hash;
 }