本文整理汇总了C#中Report.processReplaceString方法的典型用法代码示例。如果您正苦于以下问题:C# Report.processReplaceString方法的具体用法?C# Report.processReplaceString怎么用?C# Report.processReplaceString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Report
的用法示例。
在下文中一共展示了Report.processReplaceString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TagInfoExpr
public TagInfoExpr(XElement element, TagModeEnum mode, Report report)
: base(element, mode, report)
{
XAttribute exprAttr = element.Attribute("expr");
XAttribute sampleTypeAttr = element.Attribute("sampleType");
String sampleTypeStr = sampleTypeAttr != null ? sampleTypeAttr.Value : "stInterval";
TagSampleType = (PISDK.SampleTypeConstants)Enum.Parse(typeof(PISDK.SampleTypeConstants), sampleTypeStr, true);
TagSampleInterval = element.Attribute("sampleInterval") != null ? element.Attribute("sampleInterval").Value : "1m";
this.Expr = exprAttr != null ? report.processReplaceString(exprAttr.Value) : "0";
//this.Expr = "'sinusoid'*'sinusoidu'";
}
示例2: TagInfoTag
public TagInfoTag(XElement element, TagModeEnum mode, Report report)
: base(element,mode,report)
{
XAttribute tagNameAttr = element.Attribute("tagName");
this.TagName = tagNameAttr != null ? report.processReplaceString(tagNameAttr.Value) : "NO_TAG_NAME";
if ((this.AutoID) && (!report.TagsIDS.Values.Contains(this.TagName))) {
this.ID = TagName;
}
try {
Point = server.PIPoints[TagName];
if (this.AutoTitle) {
this.Title = Point.Name;
}
} catch (Exception e){
Logger.error(String.Format("Не найден тэг {0}, Исключение: {1}",TagName,e.Message));
Point = null;
//Point=server.PIPoints["sinusoid"];
}
}