Interface IOnline<T>
Implementation contract for base types tags to access online values from the PLC.
Namespace: Vortex.Connector.ValueTypes.Online
Assembly: Vortex.Connector.dll
Syntax
public interface IOnline<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
AttributeName
Gets name of this tag.
Declaration
string AttributeName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
AttributeUnits
Get units for this tag.
Declaration
string AttributeUnits { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Cyclic
Gets or sets cyclically accessed value of this tag.
Declaration
T Cyclic { get; set; }
Property Value
Type | Description |
---|---|
T |
CyclicReading
Gets or sets value indicating weather the value is read cyclically.
Declaration
bool CyclicReading { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Edit
Get or set the value that will be written to the plc in the next cyclical R/W loop.
Declaration
T Edit { get; set; }
Property Value
Type | Description |
---|---|
T |
Symbol
Get symbol of this tag.
Declaration
string Symbol { get; }
Property Value
Type | Description |
---|---|
System.String |
Synchron
Gets or sets the value synchronously.
Declaration
T Synchron { get; set; }
Property Value
Type | Description |
---|---|
T |
Value
Gets Cyclic value in when accessing via IOnline interface.
Declaration
T Value { get; set; }
Property Value
Type | Description |
---|---|
T |
Events
ValueChanged
Raises when Cyclic value changes. Provided that the value is set for cyclical reading.
Declaration
event ValueChangedEventHandlerDelegate ValueChanged
Event Type
Type | Description |
---|---|
ValueChangedEventHandlerDelegate |