Dropbox .NET SDK
Show / Hide Table of Contents

Class ApiApp

Information on linked third party applications.

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

Constructors

View Source

ApiApp(string, string, bool, string, string, DateTime?)

Initializes a new instance of the ApiApp class.

Declaration
public ApiApp(string appId, string appName, bool isAppFolder, string publisher = null, string publisherUrl = null, DateTime? linked = null)
Parameters
Type Name Description
string appId

The application unique id.

string appName

The application name.

bool isAppFolder

Whether the linked application uses a dedicated folder.

string publisher

The application publisher name.

string publisherUrl

The publisher's URL.

DateTime? linked

The time this application was linked.

Properties

View Source

AppId

The application unique id.

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

AppName

The application name.

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

IsAppFolder

Whether the linked application uses a dedicated folder.

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

Linked

The time this application was linked.

Declaration
public DateTime? Linked { get; protected set; }
Property Value
Type Description
DateTime?
View Source

Publisher

The application publisher name.

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

PublisherUrl

The publisher's URL.

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