-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/Azure/Industrial-IoT into r…
…elease/2.9.5_preview
- Loading branch information
Showing
33 changed files
with
780 additions
and
308 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/Azure.IIoT.OpcUa.Publisher.Models/src/ConnectionOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// ------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information. | ||
// ------------------------------------------------------------ | ||
|
||
namespace Azure.IIoT.OpcUa.Publisher.Models | ||
{ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
/// <summary> | ||
/// Options that can be applied to a connection | ||
/// </summary> | ||
[Flags] | ||
[DataContract] | ||
public enum ConnectionOptions | ||
{ | ||
/// <summary> | ||
/// No options | ||
/// </summary> | ||
[EnumMember(Value = "None")] | ||
None = 0x0, | ||
|
||
/// <summary> | ||
/// Create a reverse connection | ||
/// </summary> | ||
[EnumMember(Value = "UseReverseConnect")] | ||
UseReverseConnect = 0x1, | ||
|
||
/// <summary> | ||
/// Do not load complex types | ||
/// </summary> | ||
[EnumMember(Value = "NoComplexTypeSystem")] | ||
NoComplexTypeSystem = 0x10 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.