ReadRaw 方法中的 includeBounds 是什么(来自 .NET 的 OPC 基金会库)?
What is includeBounds in ReadRaw method(from OPC Foundation libraries for .NET)?
我使用 OPC Foundation 的 .NET opc 库。
服务器 class(Opc.Hda 命名空间)中的方法 ReadRaw。
"bool includeBounds" 变量有什么作用?
public ItemValueCollection[] ReadRaw(
Time startTime,
Time endTime,
int maxValues,
bool includeBounds,
ItemIdentifier[] items)
{
if (this.m_server == null)
throw new NotConnectedException();
return ((IServer) this.m_server).ReadRaw(startTime, endTime, maxValues, includeBounds, items);
}
定义结果中包含startTime和endTime对应的可能样本,即'startTime <= t <= endTime'。如果为假,则仅包含 'startTime < t < endTime' 的样本。
我使用 OPC Foundation 的 .NET opc 库。 服务器 class(Opc.Hda 命名空间)中的方法 ReadRaw。 "bool includeBounds" 变量有什么作用?
public ItemValueCollection[] ReadRaw(
Time startTime,
Time endTime,
int maxValues,
bool includeBounds,
ItemIdentifier[] items)
{
if (this.m_server == null)
throw new NotConnectedException();
return ((IServer) this.m_server).ReadRaw(startTime, endTime, maxValues, includeBounds, items);
}
定义结果中包含startTime和endTime对应的可能样本,即'startTime <= t <= endTime'。如果为假,则仅包含 'startTime < t < endTime' 的样本。