Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修复OPCFoundation.OPC.UA.dll引起的内存溢出 #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions OpcUaHelper.Standard/OpcUaHelper.Standard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua" Version="1.4.365.23" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Core" Version="1.4.365.23" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua" Version="1.4.371.86" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Core" Version="1.4.371.86" />
<PackageReference Include="System.Data.Common" Version="4.3.0" />
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
<PackageReference Include="System.Net.WebSockets.Client" Version="4.3.2" />
Expand Down
2 changes: 1 addition & 1 deletion OpcUaHelper/FormUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ public static EndpointDescription SelectEndpoint( string discoveryUrl, bool useS
/// <returns>
/// The references found. Null if an error occurred.
/// </returns>
public static ReferenceDescriptionCollection Browse( Session session, BrowseDescriptionCollection nodesToBrowse, bool throwOnError )
public static ReferenceDescriptionCollection Browse( ISession session, BrowseDescriptionCollection nodesToBrowse, bool throwOnError )
{
try
{
Expand Down
Loading