Class Station
A workstation.
[DataContract(IsReference = true)]
[KnownType(typeof(Line))]
public class Station : INotifyPropertyChanged
- Inheritance
-
Station
- Implements
- Inherited Members
Properties
Address
Gets or sets the station IP address.
[DataMember]
public string Address { get; set; }
Property Value
IsDeserializing
Gets or sets whether this object is currently being deserialized.
protected bool IsDeserializing { get; }
Property Value
Line
Gets or sets the line to which this station belongs.
[DataMember]
public Line Line { get; set; }
Property Value
LineHasBeenIncluded
Gets or sets whether a navigation property has been included yet while getting an entity graph for a data model (to prevent doing so more than once).
public bool LineHasBeenIncluded { get; set; }
Property Value
Name
Gets or sets the station name.
[DataMember]
public string Name { get; set; }
Property Value
StartedDateTime
Gets or sets the UTC date/time that this station was last started.
[DataMember]
public DateTime? StartedDateTime { get; set; }
Property Value
StationId
Gets or sets the unique identifier for this station.
[DataMember]
public short StationId { get; set; }
Property Value
WorkstationVersion
Gets or sets the Pinpoint Workstation version.
[DataMember]
public string WorkstationVersion { get; set; }
Property Value
Methods
OnPropertyChanged(string)
Processes property changes by raising the PropertyChanged event.
protected virtual void OnPropertyChanged(string propertyName)
Parameters
propertyName
stringThe name of the property that changed.
Events
PropertyChanged
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged