Dropbox .NET SDK
Show / Hide Table of Contents

Class Name

Representations for a person's name to assist with internationalization.

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

Constructors

View Source

Name(string, string, string, string, string)

Initializes a new instance of the Name class.

Declaration
public Name(string givenName, string surname, string familiarName, string displayName, string abbreviatedName)
Parameters
Type Name Description
string givenName

Also known as a first name.

string surname

Also known as a last name or family name.

string familiarName

Locale-dependent name. In the US, a person's familiar name is their givenName, but elsewhere, it could be any combination of a person's givenName and surname.

string displayName

A name that can be used directly to represent the name of a user's Dropbox account.

string abbreviatedName

An abbreviated form of the person's name. Their initials in most locales.

Properties

View Source

AbbreviatedName

An abbreviated form of the person's name. Their initials in most locales.

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

DisplayName

A name that can be used directly to represent the name of a user's Dropbox account.

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

FamiliarName

Locale-dependent name. In the US, a person's familiar name is their GivenName, but elsewhere, it could be any combination of a person's GivenName and Surname.

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

GivenName

Also known as a first name.

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

Surname

Also known as a last name or family name.

Declaration
public string Surname { get; protected set; }
Property Value
Type Description
string

See Also

Account
BasicAccount
FullAccount
  • View Source
In this article
Back to top Dropbox .NET SDK