Show / Hide Table of Contents

Class Name

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

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

Constructors

| Improve this Doc 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
System.String givenName

Also known as a first name.

System.String surname

Also known as a last name or family name.

System.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.

System.String displayName

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

System.String abbreviatedName

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

Properties

| Improve this Doc 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
System.String
| Improve this Doc 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
System.String
| Improve this Doc 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
System.String
| Improve this Doc View Source

GivenName

Also known as a first name.

Declaration
public string GivenName { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Surname

Also known as a last name or family name.

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

See Also

Account
BasicAccount
FullAccount
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • Name(String, String, String, String, String)
  • Properties
    • AbbreviatedName
    • DisplayName
    • FamiliarName
    • GivenName
    • Surname
  • See Also
Back to top Generated by DocFX