Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
GeoObjectReference.cs
1using System;
2using System.Xml;
4
6{
10 public class GeoObjectReference
11 {
16 {
17 }
18
22 public string GeoId { get; set; }
23
27 public XmlElement Definition { get; set; }
28
34 public string Creator { get; set; }
35
39 public GeoPosition Position { get; set; }
40
44 public int? TimeToLive { get; set; }
45
50 public DateTime Created { get; set; }
51
56 public DateTime? Updated { get; set; }
57
63 public DateTime? From { get; set; }
64
70 public DateTime? To { get; set; }
71 }
72}
Represents a reference to a geo-spatial object.
GeoObjectReference()
Represents a reference to a geo-spatial object.
DateTime? Updated
When information was last updated (if updated). Timestamps should use UTC.
string GeoId
Geo-spatial object reference identifier.
DateTime? To
Timestamp indicating to what point in time publication is valid. Can be used to publish an expected e...
DateTime Created
When information was created. Timestamps should use UTC.
string Creator
Bare JID of creator, if available. Publications resulting from internal processing,...
XmlElement Definition
XML definition of object reference.
DateTime? From
Timestamp indicating from what point in time publication is valid. Can be used to publish a future lo...
int? TimeToLive
Number of seconds until the object expires, unless updated, if defined.
Contains information about a position in a geo-spatial coordinate system.
Definition: GeoPosition.cs:17