示例#1
0
 /// <summary>
 /// Determines whether the channel type relates to a calculated channel.
 /// </summary>
 public static bool IsCalculated(this Cnl cnl)
 {
     return(CnlTypeID.IsCalculated(cnl.CnlTypeID));
 }
示例#2
0
 /// <summary>
 /// Determines whether the channel can be written to an archive, depending on its type.
 /// </summary>
 public static bool IsArchivable(this Cnl cnl)
 {
     return(CnlTypeID.IsArchivable(cnl.CnlTypeID));
 }
示例#3
0
 /// <summary>
 /// Determines whether the channel type relates to an output channel.
 /// </summary>
 public static bool IsOutput(this Cnl cnl)
 {
     return(CnlTypeID.IsOutput(cnl.CnlTypeID));
 }