Dropbox .NET SDK
Show / Hide Table of Contents

Class AccountPhotoGetArg

The account photo get arg object

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

Constructors

View Source

AccountPhotoGetArg(string, string, bool, bool)

Initializes a new instance of the AccountPhotoGetArg class.

Declaration
public AccountPhotoGetArg(string dbxAccountId, string size, bool circleCrop, bool expectAccountPhoto)
Parameters
Type Name Description
string dbxAccountId

Encoded ID of the user. Must start either with 'dbid:' or 'dbaphid:'.

string size

A string representing the size of the photo.

bool circleCrop

True if the photo should be cropped and false otherwise.

bool expectAccountPhoto

True if we expect account photo to exist.

Properties

View Source

CircleCrop

True if the photo should be cropped and false otherwise.

Declaration
public bool CircleCrop { get; protected set; }
Property Value
Type Description
bool
View Source

DbxAccountId

Encoded ID of the user. Must start either with 'dbid:' or 'dbaphid:'.

Declaration
public string DbxAccountId { get; protected set; }
Property Value
Type Description
string
View Source

ExpectAccountPhoto

True if we expect account photo to exist.

Declaration
public bool ExpectAccountPhoto { get; protected set; }
Property Value
Type Description
bool
View Source

Size

A string representing the size of the photo.

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