public PIStreamUpdatesRegister(string Status = null, string Source = null, string SourceName = null, string SourcePath = null, string LatestMarker = null, PIErrors Exception = null)
 {
     this.Status       = Status;
     this.Source       = Source;
     this.SourceName   = SourceName;
     this.SourcePath   = SourcePath;
     this.LatestMarker = LatestMarker;
     this.Exception    = Exception;
 }
예제 #2
0
 public PIItemPoint(string Identifier = null, string IdentifierType = null, PIPoint Object = null, PIErrors Exception = null)
 {
     this.Identifier     = Identifier;
     this.IdentifierType = IdentifierType;
     this.Object         = Object;
     this.Exception      = Exception;
 }
 public PIItemEventFrame(string Identifier = null, string IdentifierType = null, PIEventFrame Object = null, PIErrors Exception = null)
 {
     this.Identifier     = Identifier;
     this.IdentifierType = IdentifierType;
     this.Object         = Object;
     this.Exception      = Exception;
 }
 public PIItemAttribute(string Identifier = null, string IdentifierType = null, PIAttribute Object = null, PIErrors Exception = null)
 {
     this.Identifier     = Identifier;
     this.IdentifierType = IdentifierType;
     this.Object         = Object;
     this.Exception      = Exception;
 }
 public PITimedValue(string Timestamp = null, string UnitsAbbreviation = null, bool?Good = null, bool?Questionable = null, bool?Substituted = null, object Value = null, PIErrors Exception = null)
 {
     this.Timestamp         = Timestamp;
     this.UnitsAbbreviation = UnitsAbbreviation;
     this.Good         = Good;
     this.Questionable = Questionable;
     this.Substituted  = Substituted;
     this.Value        = Value;
     this.Exception    = Exception;
 }
 public PIValue(object Value = null, PIErrors Exception = null)
 {
     this.Value     = Value;
     this.Exception = Exception;
 }
 public PIStreamUpdatesRetrieve(string Source = null, string SourceName = null, string SourcePath = null, string RequestedMarker = null, string LatestMarker = null, string Status = null, List <PIDataPipeEvent> Events = null, PIErrors Exception = null)
 {
     this.Source          = Source;
     this.SourceName      = SourceName;
     this.SourcePath      = SourcePath;
     this.RequestedMarker = RequestedMarker;
     this.LatestMarker    = LatestMarker;
     this.Status          = Status;
     this.Events          = Events;
     this.Exception       = Exception;
 }