OpcLabs.PicoOpc
1.0.487
Prefix Reserved
dotnet add package OpcLabs.PicoOpc --version 1.0.487
NuGet\Install-Package OpcLabs.PicoOpc -Version 1.0.487
<PackageReference Include="OpcLabs.PicoOpc" Version="1.0.487" />
paket add OpcLabs.PicoOpc --version 1.0.487
#r "nuget: OpcLabs.PicoOpc, 1.0.487"
// Install OpcLabs.PicoOpc as a Cake Addin #addin nuget:?package=OpcLabs.PicoOpc&version=1.0.487 // Install OpcLabs.PicoOpc as a Cake Tool #tool nuget:?package=OpcLabs.PicoOpc&version=1.0.487
PicoOPC
PicoOPC is a smallest imaginable OPC Unified Architecture (OPC UA) client library. It works with any .NET Standard conformant runtime. PicoOPC does not depend on any OPC UA stack. With PicoOPC, you can create and close sessions (opc.tcp), and perform reads and writes, synchronously or asynchronously. There is no support for security, browsing or subscriptions.
PicoOPC is a commercially licensed product. Without a license key, it runs in a trial mode. The trial provides valid data to a client application for 30 minutes; after that period, the component (your app) needs to be re-started, and so on. For details, see the documentation.
PicoOPC requires a .NET runtime compatible with .NET Standard 2.0.
Note: OPC Foundation has not published a profile for such small a client, and PicoOPC therefore cannot be officially claimed to comply with the OPC UA specifications, although in a technical sense, PicoOPC is highly interoperable.
List of available NuGet packages
- OpcLabs.PicoOpc: OPC client components for all environments and project types.
How to start
If you want to see some result quickly, reference the OpcLabs.PicoOPC package from your project, and paste in the example code further below. If you do not mind studying a bit, here is the documentation.
Types
AttributeId
: Identifiers assigned to attributes.BuiltInType
: Enumeration of built-in types.Client
: A minimalistic OPC UA client object.DataValue
: The value and associated information.NodeId
: Unambiguously identifies a node.NodeIdType
: Type of the node ID identifier.ReadValueId
: Identifier for an item to read.Variant
: A union of all built-in data types.WriteValue
: Describes a node, and its attribute and value.
Client object methods
Connect
/ConnectAsync
: Connects to the server.Disconnect
/DisconnectAsync
: Disconnects from the server.Read
/ReadAsync
: Reads one or more attributes of one or mode nodes.Write
/WriteAsync
: Writes values to one or more attributes of one or more nodes.
Example code
using OpcLabs.PicoOpc.UA;
...
var client = new Client();
client.Connect(new Uri("opc.tcp://opcua.demo-this.com:51210/UA/SampleServer"));
// Read a node, then write 123 to it.
var nodeId = new NodeId(10221, namespaceIndex:2);
DataValue dataValue = client.Read(TimeSpan.Zero, new[] {new ReadValueId(nodeId)})[0];
UInt32 statusCode = client.Write(new[] {new WriteValue(nodeId,
new DataValue(new Variant(BuiltInType.Int32, 123)))})[0];
client.Disconnect();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.ValueTuple (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.487 | 1,584 | 12/2/2018 |