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