You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2019/05/04 19:32:11 UTC

[plc4x] 05/06: Merge branch 'feature/plc4net' of https://github.com/bjoernhoeper/incubator-plc4x into bjoernhoeper-feature/plc4net

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch bjoernhoeper-feature/plc4net
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit a458f649e2a02c43295583bac59b12f658517387
Merge: 616c3d6 a0948e6
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Sat May 4 14:07:18 2019 +0200

    Merge branch 'feature/plc4net' of https://github.com/bjoernhoeper/incubator-plc4x into bjoernhoeper-feature/plc4net

 .gitignore                                         |   1 +
 .vscode/settings.json                              |   8 +
 plc4net/.gitignore                                 | 344 +++++++++++++++++++++
 plc4net/plc4net.driver/IPlcDriver.cs               |  10 +
 plc4net/plc4net.driver/plc4net.driver.csproj       |   7 +
 plc4net/plc4net.sln                                |  25 ++
 plc4net/plc4net/PlcDriverManager.cs                | 104 +++++++
 plc4net/plc4net/api/IPlcConnection.cs              |  89 ++++++
 plc4net/plc4net/api/IPlcDriver.cs                  |  57 ++++
 .../api/authentication/IPlcAuthentication.cs       |  29 ++
 .../PlcUsernamePasswordAuthentication.cs           |  48 +++
 .../plc4net/api/metadata/IPlcConnectionMetadata.cs |  39 +++
 .../plc4net/exceptions/PlcConnectionException.cs   |  50 +++
 plc4net/plc4net/exceptions/PlcException.cs         |  50 +++
 .../plc4net/exceptions/PlcInvalidFieldException.cs |  46 +++
 plc4net/plc4net/messages/IPlcFieldRequest.cs       |  52 ++++
 plc4net/plc4net/messages/IPlcFieldResponse.cs      |  49 +++
 plc4net/plc4net/messages/IPlcMessage.cs            |  29 ++
 plc4net/plc4net/messages/IPlcReadRequest.cs        |  29 ++
 plc4net/plc4net/messages/IPlcReadRequestBuilder.cs |  35 +++
 plc4net/plc4net/messages/IPlcReadResponse.cs       |  29 ++
 plc4net/plc4net/messages/IPlcRequest.cs            |  36 +++
 plc4net/plc4net/messages/IPlcRequestBuilder.cs     |  34 ++
 plc4net/plc4net/messages/IPlcResponse.cs           |  33 ++
 .../plc4net/messages/IPlcSubscriptionEventArgs.cs  |  35 +++
 .../plc4net/messages/IPlcSubscriptionRequest.cs    |  29 ++
 .../messages/IPlcSubscriptionRequestBuilder.cs     |  54 ++++
 .../plc4net/messages/IPlcSubscriptionResponse.cs   |  42 +++
 .../plc4net/messages/IPlcUnsubscriptionRequest.cs  |  29 ++
 .../messages/IPlcUnsubscriptionRequestBuilder.cs   |  45 +++
 .../plc4net/messages/IPlcUnsubscriptionResponse.cs |  29 ++
 plc4net/plc4net/messages/IPlcWriteRequest.cs       |  32 ++
 .../plc4net/messages/IPlcWriteRequestBuilder.cs    | 134 ++++++++
 plc4net/plc4net/model/IPlcField.cs                 |  39 +++
 plc4net/plc4net/model/IPlcSubscriptionHandle.cs    |  35 +++
 plc4net/plc4net/plc4net.csproj                     |  10 +
 plc4net/plc4net/types/PlcResponseCode.cs           |  35 +++
 37 files changed, 1781 insertions(+)