Dropbox .NET SDK
Show / Hide Table of Contents

Class AudienceExceptions

The total count and truncated list of information of content inside this folder that has a different audience than the link on this folder. This is only returned for folders.

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

Constructors

View Source

AudienceExceptions(uint, IEnumerable<AudienceExceptionContentInfo>)

Initializes a new instance of the AudienceExceptions class.

Declaration
public AudienceExceptions(uint count, IEnumerable<AudienceExceptionContentInfo> exceptions)
Parameters
Type Name Description
uint count

The count

IEnumerable<AudienceExceptionContentInfo> exceptions

A truncated list of some of the content that is an exception. The length of this list could be smaller than the count since it is only a sample but will not be empty as long as count is not 0.

Properties

View Source

Count

Gets the count of the audience exceptions

Declaration
public uint Count { get; protected set; }
Property Value
Type Description
uint
View Source

Exceptions

A truncated list of some of the content that is an exception. The length of this list could be smaller than the count since it is only a sample but will not be empty as long as count is not 0.

Declaration
public IList<AudienceExceptionContentInfo> Exceptions { get; protected set; }
Property Value
Type Description
IList<AudienceExceptionContentInfo>
  • View Source
In this article
Back to top Dropbox .NET SDK