Dropbox .NET SDK

Class SharedLinkShareDetails

Added members as audience of shared link.

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

Constructors

View Source

SharedLinkShareDetails(UserLogInfo, IEnumerable<ExternalUserLogInfo>)

Initializes a new instance of the SharedLinkShareDetails class.

Declaration
public SharedLinkShareDetails(UserLogInfo sharedLinkOwner = null, IEnumerable<ExternalUserLogInfo> externalUsers = null)
Parameters
Type Name Description
UserLogInfo sharedLinkOwner

Shared link owner details. Might be missing due to historical data gap.

IEnumerable<ExternalUserLogInfo> externalUsers

Users without a Dropbox account that were added as shared link audience.

Properties

View Source

ExternalUsers

Users without a Dropbox account that were added as shared link audience.

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

SharedLinkOwner

Shared link owner details. Might be missing due to historical data gap.

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