Class SharingAllowlistAddArgs
Structure representing Approve List entries. Domain and emails are supported. At least one entry of any supported type is required.
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class SharingAllowlistAddArgs
Constructors
View SourceSharingAllowlistAddArgs(IEnumerable<string>, IEnumerable<string>)
Initializes a new instance of the SharingAllowlistAddArgs class.
Declaration
public SharingAllowlistAddArgs(IEnumerable<string> domains = null, IEnumerable<string> emails = null)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<string> | domains | List of domains represented by valid string representation (RFC-1034/5). |
| IEnumerable<string> | emails | List of emails represented by valid string representation (RFC-5322/822). |
Properties
View SourceDomains
List of domains represented by valid string representation (RFC-1034/5).
Declaration
public IList<string> Domains { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |
Emails
List of emails represented by valid string representation (RFC-5322/822).
Declaration
public IList<string> Emails { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |