Online Forums
Technical support is provided through Support Forums below. Anybody can view them; you need to Register/Login to our site (see links in upper right corner) in order to Post questions. You do not have to be a licensed user of our product.
Please read Rules for forum posts before reporting your issue or asking a question. OPC Labs team is actively monitoring the forums, and replies as soon as possible. Various technical information can also be found in our Knowledge Base. For your convenience, we have also assembled a Frequently Asked Questions page.
Do not use the Contact page for technical issues.
Get Data Type methods
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
The GetDataTypePropertyValue method is nice for simple coding, but it accesses one property at a time, making the situation even worse.
I suggest that you replace it by calling GetMultiplePropertyValues instead, and make just one such call per all items in a branch, if not for more. The code will get uglier, e.g. you will have to explicitly specify the DAPropertyId.DataType, and typecast the obtained value, but that's te price for better speed.
May I ask about the larger picture - why do you need the data type? Maybe the whole thing can be designed diffently.
Please Log in or Create an account to join the conversation.
public List<string> OPCTags = new List<string>();
private List<string> OPCDataTypeConver = new List<string>();
private void Get_OPCTagsNames(string parentItemID)
{
var nodeFilter = new DANodeFilter();
EasyDAClient.ClientParameters.TurnOffActivationSecurity = true;
OpcLabs.EasyOpc.DataAccess.DANodeElementCollection allNodes1 = easyDAClient1.BrowseNodes(IP, serverName, parentItemID, nodeFilter);
foreach (DANodeElement nodeElement in allNodes1)
{
if (nodeElement.IsLeaf)
{
OpcLabs.EasyOpc.VarType varType = easyDAClient1.GetDataTypePropertyValue(IP, serverName, nodeElement);
//string display;
//try
//{
// object value = client.ReadItemValue(IP, serverName, nodeElement.ItemId);
// display = String.Format("", value);
//}
//catch (OpcException ex)
//{
// display = String.Format("** {0} **", ex.GetBaseException().Message);
//}
OPCTags.Add(nodeElement.ItemId);
OPCDataTypeConver.Add(varType.ToString());
}
else
{
if (nodeElement.IsBranch)
Get_OPCTagsNames(nodeElement.ItemId);
}
}
}
Please Log in or Create an account to join the conversation.