// This example shows how to read a single item, and display its value, timestamp and quality.
using System;
using OpcLabs.EasyOpc.DataAccess;
using OpcLabs.EasyOpc.OperationModel;
namespace DocExamples.DataAccess._EasyDAClient
{
partial class ReadItem
{
public static void Main1()
{
// Instantiate the client object.
var client = new EasyDAClient();
DAVtq vtq;
try
{
vtq = client.ReadItem("", "OPCLabs.KitServer.2", "Simulation.Random");
}
catch (OpcException opcException)
{
Console.WriteLine("*** Failure: {0}", opcException.GetBaseException().Message);
return;
}
Console.WriteLine("Vtq: {0}", vtq);
}
}
}
# This example shows how to read a single item, and display its value, timestamp and quality.
#requires -Version 5.1
using namespace OpcLabs.EasyOpc.DataAccess
using namespace OpcLabs.EasyOpc.OperationModel
# The path below assumes that the current directory is [ProductDir]/Examples-NET/PowerShell/Windows .
Add-Type -Path "../../../Assemblies/net47/OpcLabs.EasyOpcClassic.dll"
# Instantiate the client object.
$client = New-Object EasyDAClient
try {
$vtq = [IEasyDAClientExtension]::ReadItem($client, "", "OPCLabs.KitServer.2", "Simulation.Random")
}
catch [OpcException] {
Write-Host "*** Failure: $($PSItem.Exception.GetBaseException().Message)"
return
}
Write-Host "Vtq: $($vtq)"
' This example shows how to read a single item, and display its value, timestamp and quality.
Imports OpcLabs.EasyOpc.DataAccess
Imports OpcLabs.EasyOpc.OperationModel
Namespace DocExamples.DataAccess._EasyDAClient
Partial Friend Class ReadItem
Public Shared Sub Main1()
Dim client = New EasyDAClient()
Dim vtq As DAVtq
Try
vtq = client.ReadItem("", "OPCLabs.KitServer.2", "Simulation.Random")
Catch opcException As OpcException
Console.WriteLine("*** Failure: {0}", opcException.GetBaseException().Message)
Exit Sub
End Try
Console.WriteLine("Vtq: {0}", vtq)
End Sub
End Class
End Namespace