Dropbox .NET SDK
Show / Hide Table of Contents

Class ListFileMembersCountResult

The list file members count result object

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

Constructors

View Source

ListFileMembersCountResult(SharedFileMembers, uint)

Initializes a new instance of the ListFileMembersCountResult class.

Declaration
public ListFileMembersCountResult(SharedFileMembers members, uint memberCount)
Parameters
Type Name Description
SharedFileMembers members

A list of members on this file.

uint memberCount

The number of members on this file. This does not include inherited members.

Properties

View Source

MemberCount

The number of members on this file. This does not include inherited members.

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

Members

A list of members on this file.

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