Show / Hide Table of Contents

Class SecureFiles

Represent the object needed to download Files from Secure Exchanges. All the files of a same message are using the same key and IV

Inheritance
System.Object
SecureFiles
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: SecureExchangesSDK.Models.Transport
Assembly: SecureExchangesSDK.dll
Syntax
[Serializable]
public class SecureFiles

Constructors

SecureFiles()

Declaration
public SecureFiles()

Properties

Files

Represent the list of the files need to download

Declaration
public List<FileMetaData> Files { get; set; }
Property Value
Type Description
System.Collections.Generic.List<FileMetaData>

IV

Represent the IV to decrypt the file

Declaration
public byte[] IV { get; set; }
Property Value
Type Description
System.Byte[]

KeepLocalCopyCrypted

Need to keep a local copy crypted of the file

Declaration
public bool KeepLocalCopyCrypted { get; set; }
Property Value
Type Description
System.Boolean

Key

Reprsent the key to decrypt the file

Declaration
public byte[] Key { get; set; }
Property Value
Type Description
System.Byte[]

msgID

Represent the ID of the message associated with this file

Declaration
public Guid msgID { get; set; }
Property Value
Type Description
System.Guid

Extension Methods

ExtensionHelper.CopySameNameAndTypeProperties<T, S>(T, S)
In This Article
Back to top Generated by DocFX