C# Class IronPigeon.PayloadReference

显示文件 Open project: AArnott/IronPigeon Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
PayloadReference ( Uri location, byte hash, string hashAlgorithmName, byte key, byte iv, System.DateTime expiresUtc ) : System

Initializes a new instance of the PayloadReference class.

Method Details

PayloadReference() public method

Initializes a new instance of the PayloadReference class.
public PayloadReference ( Uri location, byte hash, string hashAlgorithmName, byte key, byte iv, System.DateTime expiresUtc ) : System
location System.Uri The URL where the payload of the message may be downloaded.
hash byte The hash of the encrypted bytes of the payload.
hashAlgorithmName string Name of the hash algorithm.
key byte The symmetric key used to encrypt the payload.
iv byte The initialization vector used to encrypt the payload.
expiresUtc System.DateTime The time beyond which the payload is expected to be deleted.
return System