Class Name
Representations for a person's name to assist with internationalization.
Inheritance
Inherited Members
Namespace: Dropbox.Api.Users
Assembly: Dropbox.Api.dll
Syntax
public class Name
  Constructors
| Improve this Doc View SourceName(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   | 
      
| 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 SourceAbbreviatedName
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 | 
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 | 
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 | 
GivenName
Also known as a first name.
Declaration
public string GivenName { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Surname
Also known as a last name or family name.
Declaration
public string Surname { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| System.String |