Dropbox .NET SDK

Class EmailIngestReceiveFileDetails

Received files via Email to Dropbox.

Inheritance
object
EmailIngestReceiveFileDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class EmailIngestReceiveFileDetails

Constructors

View Source

EmailIngestReceiveFileDetails(string, IEnumerable<string>, string, string, string)

Initializes a new instance of the EmailIngestReceiveFileDetails class.

Declaration
public EmailIngestReceiveFileDetails(string inboxName, IEnumerable<string> attachmentNames, string subject = null, string fromName = null, string fromEmail = null)
Parameters
Type Name Description
string inboxName

Inbox name.

IEnumerable<string> attachmentNames

Submitted file names.

string subject

Subject of the email.

string fromName

The name as provided by the submitter.

string fromEmail

The email as provided by the submitter.

Properties

View Source

AttachmentNames

Submitted file names.

Declaration
public IList<string> AttachmentNames { get; protected set; }
Property Value
Type Description
IList<string>
View Source

FromEmail

The email as provided by the submitter.

Declaration
public string FromEmail { get; protected set; }
Property Value
Type Description
string
View Source

FromName

The name as provided by the submitter.

Declaration
public string FromName { get; protected set; }
Property Value
Type Description
string
View Source

InboxName

Inbox name.

Declaration
public string InboxName { get; protected set; }
Property Value
Type Description
string
View Source

Subject

Subject of the email.

Declaration
public string Subject { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK