Dropbox .NET SDK

Class RecipientsConfiguration

Recipients Configuration

Inheritance
object
RecipientsConfiguration
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 RecipientsConfiguration

Constructors

View Source

RecipientsConfiguration(AlertRecipientsSettingType, IEnumerable<string>, IEnumerable<string>)

Initializes a new instance of the RecipientsConfiguration class.

Declaration
public RecipientsConfiguration(AlertRecipientsSettingType recipientSettingType = null, IEnumerable<string> emails = null, IEnumerable<string> groups = null)
Parameters
Type Name Description
AlertRecipientsSettingType recipientSettingType

Recipients setting type.

IEnumerable<string> emails

A list of user emails to notify.

IEnumerable<string> groups

A list of groups to notify.

Properties

View Source

Emails

A list of user emails to notify.

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

Groups

A list of groups to notify.

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

RecipientSettingType

Recipients setting type.

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