Class GpxFile
Represents a GPX file.
Inheritance
System.Object
GpxFile
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public class GpxFile : IXmlSerializable
Properties
Description
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
System.String
|
Id
Gets or sets the id.
Declaration
public long Id { get; set; }
Property Value
System.Int64
|
Lat
Gets or sets the latitude.
Declaration
public double ? Lat { get; set; }
Property Value
System.Nullable<System.Double>
|
Lon
Gets or sets the longitude.
Declaration
public double ? Lon { get; set; }
Property Value
System.Nullable<System.Double>
|
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
System.String
|
Pending
Gets or sets the pending approval.
Declaration
public bool Pending { get; set; }
Property Value
System.Boolean
|
Tags
Gets or sets the tags.
Declaration
public string[] Tags { get; set; }
Property Value
System.String[]
|
TimeStamp
Gets or sets the timestamp.
Declaration
public DateTime TimeStamp { get; set; }
Property Value
System.DateTime
|
User
Gets or sets the user name.
Declaration
public string User { get; set; }
Property Value
System.String
|
Visibility
Gets or sets the visibility.
Declaration
public Visibility? Visibility { get; set; }
Property Value
System.Nullable<Visibility>
|
Methods
GetSchema()
Declaration
public XmlSchema GetSchema()
Returns
XmlSchema
|
ReadXml(XmlReader)
Declaration
public void ReadXml(XmlReader reader)
Parameters
XmlReader
reader
|
WriteXml(XmlWriter)
Declaration
public void WriteXml(XmlWriter writer)
Parameters
XmlWriter
writer
|