Class DupeCheckAttachmentInfo
Contains the data the duplicate checker needs about attachments.
Inherited Members
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public class DupeCheckAttachmentInfo
Remarks
Initializes a new instance of the DupeCheckAttachmentInfo class.
Constructors
View SourceDupeCheckAttachmentInfo(string, string, bool)
Contains the data the duplicate checker needs about attachments.
Declaration
public DupeCheckAttachmentInfo(string filename, string tempFilename, bool downloaded)
Parameters
Type | Name | Description |
---|---|---|
string | filename | The name of the attachment. |
string | tempFilename | The temporary name of the attachment. |
bool | downloaded | True if the attachment was downloaded locally, and false if not. |
Remarks
Initializes a new instance of the DupeCheckAttachmentInfo class.
Properties
View SourceActualFilename
Gets the actual name of the attachment.
Declaration
public string ActualFilename { get; }
Property Value
Type | Description |
---|---|
string |
Downloaded
Gets a value indicating whether the attachment was downloaded locally or not.
Declaration
public bool Downloaded { get; }
Property Value
Type | Description |
---|---|
bool |
TempFilename
Gets the temporary name of the attachment used for storing locally.
Declaration
public string TempFilename { get; }
Property Value
Type | Description |
---|---|
string |
Methods
View SourceGetAttachmentsTmpFolderPath()
Gets the folder path to the temporary folder that holds downloaded attachments.
Declaration
public static string GetAttachmentsTmpFolderPath()
Returns
Type | Description |
---|---|
string | The path to the tmp folder of downloaded attachments. |
Remarks
This folder location ONLY holds image attachments. Other file types are not downloaded to this location.