Show / Hide Table of Contents

Class DupeCheckAttachmentInfo

Contains the data the duplicate checker needs about attachments.

Inheritance
object
DupeCheckAttachmentInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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 Source

DupeCheckAttachmentInfo(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 Source

ActualFilename

Gets the actual name of the attachment.

Declaration
public string ActualFilename { get; }
Property Value
Type Description
string
View Source

Downloaded

Gets a value indicating whether the attachment was downloaded locally or not.

Declaration
public bool Downloaded { get; }
Property Value
Type Description
bool
View Source

TempFilename

Gets the temporary name of the attachment used for storing locally.

Declaration
public string TempFilename { get; }
Property Value
Type Description
string

Methods

View Source

GetAttachmentsTmpFolderPath()

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.

  • View Source
In this article
Back to top Generated by DocFX