Skip to content

Commit

Permalink
.NET API: Added missing parameter isDyn for function IedServerConfig.…
Browse files Browse the repository at this point in the history
…SetReportSetting
  • Loading branch information
mzillgith committed Nov 18, 2024
1 parent 37596ec commit 3a1480e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dotnet/IEC61850forCSharp/IedServerConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -408,9 +408,9 @@ public bool SyncIntegrityReportTimes
/// <note>Can be used to implement some of Services\ReportSettings options</note>
/// <param name="settings">the settings that should be configured writeable or read-only</param>
/// <param name="isDyn">true, settings are writeable, false, settings are read-only</param>
public void SetReportSetting(ReportSettings settings)
public void SetReportSetting(ReportSettings settings, bool isDyn = true)
{
IedServerConfig_setReportSetting(self, (byte)settings, true);
IedServerConfig_setReportSetting(self, (byte)settings, isDyn);
}

/// <summary>
Expand Down

0 comments on commit 3a1480e

Please sign in to comment.