Dropbox .NET SDK
Show / Hide Table of Contents

Class MemberLinkedApps

Information on linked applications of a team member.

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

Constructors

View Source

MemberLinkedApps(string, IEnumerable<ApiApp>)

Initializes a new instance of the MemberLinkedApps class.

Declaration
public MemberLinkedApps(string teamMemberId, IEnumerable<ApiApp> linkedApiApps)
Parameters
Type Name Description
string teamMemberId

The member unique Id.

IEnumerable<ApiApp> linkedApiApps

List of third party applications linked by this team member.

Properties

View Source

LinkedApiApps

List of third party applications linked by this team member.

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

TeamMemberId

The member unique Id.

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