Dropbox .NET SDK

Class GeoLocationLogInfo

Geographic location details.

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

Constructors

View Source

GeoLocationLogInfo(string, string, string, string)

Initializes a new instance of the GeoLocationLogInfo class.

Declaration
public GeoLocationLogInfo(string ipAddress, string city = null, string region = null, string country = null)
Parameters
Type Name Description
string ipAddress

IP address.

string city

City name.

string region

Region name.

string country

Country code.

Properties

View Source

City

City name.

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

Country

Country code.

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

IpAddress

IP address.

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

Region

Region name.

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