コード例 #1
0
 public PISummaryValue(string Type = null, PITimedValue Value = null)
 {
     this.Type  = Type;
     this.Value = Value;
 }
コード例 #2
0
 public PIStreamValue(string WebId = null, string Name = null, string Path = null, PITimedValue Value = null, PIStreamValueLinks Links = null, PIWebException WebException = null)
 {
     this.WebId        = WebId;
     this.Name         = Name;
     this.Path         = Path;
     this.Value        = Value;
     this.Links        = Links;
     this.WebException = WebException;
 }
コード例 #3
0
 public PIStreamValue(string WebId = null, string Name = null, string Path = null, PITimedValue Value = null, Dictionary <string, string> Links = null)
 {
     this.WebId = WebId;
     this.Name  = Name;
     this.Path  = Path;
     this.Value = Value;
     this.Links = Links;
 }
コード例 #4
0
 public PISummaryValue(string Type = null, PITimedValue Value = null, PIWebException WebException = null)
 {
     this.Type         = Type;
     this.Value        = Value;
     this.WebException = WebException;
 }