Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1826,57 +1826,13 @@
"Array");
const string daAnalogArray = "DataAccess_AnalogType_Array_";

CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "Boolean",
"Boolean",
BuiltInType.Boolean,
ValueRanks.OneDimension,
s_booleanArray);
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "Byte",
"Byte",
BuiltInType.Byte,
ValueRanks.OneDimension,
new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 });
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "ByteString",
"ByteString",
BuiltInType.ByteString,
ValueRanks.OneDimension,
new byte[][]
{
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
});
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "DateTime",
"DateTime",
BuiltInType.DateTime,
ValueRanks.OneDimension,
new DateTime[]
{
DateTime.MinValue,
DateTime.MaxValue,
DateTime.MinValue,
DateTime.MaxValue,
DateTime.MinValue,
DateTime.MaxValue,
DateTime.MinValue,
DateTime.MaxValue,
DateTime.MinValue
});
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "Double",
Expand All @@ -1899,24 +1855,6 @@
BuiltInType.Float,
ValueRanks.OneDimension,
s_singleArray);
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "Guid",
"Guid",
BuiltInType.Guid,
ValueRanks.OneDimension,
new Guid[]
{
Guid.NewGuid(),
Guid.NewGuid(),
Guid.NewGuid(),
Guid.NewGuid(),
Guid.NewGuid(),
Guid.NewGuid(),
Guid.NewGuid(),
Guid.NewGuid(),
Guid.NewGuid()
});
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "Int16",
Expand Down Expand Up @@ -1945,90 +1883,20 @@
BuiltInType.Integer,
ValueRanks.OneDimension,
new long[] { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 });
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "LocaleId",
"LocaleId",
DataTypeIds.LocaleId,
ValueRanks.OneDimension,
s_stringArray,
null);
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "LocalizedText",
"LocalizedText",
BuiltInType.LocalizedText,
ValueRanks.OneDimension,
new LocalizedText[]
{
new("en", "Hello World1"),
new("en", "Hello World2"),
new("en", "Hello World3"),
new("en", "Hello World4"),
new("en", "Hello World5"),
new("en", "Hello World6"),
new("en", "Hello World7"),
new("en", "Hello World8"),
new("en", "Hello World9"),
new("en", "Hello World10")
});
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "NodeId",
"NodeId",
BuiltInType.NodeId,
ValueRanks.OneDimension,
new NodeId[]
{
new(Guid.NewGuid()),
new(Guid.NewGuid()),
new(Guid.NewGuid()),
new(Guid.NewGuid()),
new(Guid.NewGuid()),
new(Guid.NewGuid()),
new(Guid.NewGuid()),
new(Guid.NewGuid()),
new(Guid.NewGuid()),
new(Guid.NewGuid())
});
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "Number",
"Number",
BuiltInType.Number,
ValueRanks.OneDimension,
new short[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 });
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "QualifiedName",
"QualifiedName",
BuiltInType.QualifiedName,
ValueRanks.OneDimension,
new QualifiedName[] {
"q0",
"q1",
"q2",
"q3",
"q4",
"q5",
"q6",
"q7",
"q8",
"q9" });
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "SByte",
"SByte",
BuiltInType.SByte,
ValueRanks.OneDimension,
new sbyte[] { 10, 20, 30, 40, 50, 60, 70, 80, 90 });
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "String",
"String",
BuiltInType.String,
ValueRanks.OneDimension,
s_stringArray0);
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "UInt16",
Expand Down Expand Up @@ -2057,52 +1925,7 @@
BuiltInType.UInteger,
ValueRanks.OneDimension,
new ulong[] { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 });
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "UtcTime",
"UtcTime",
DataTypeIds.UtcTime,
ValueRanks.OneDimension,
new DateTime[]
{
DateTime.MinValue.ToUniversalTime(),
DateTime.MaxValue.ToUniversalTime(),
DateTime.MinValue.ToUniversalTime(),
DateTime.MaxValue.ToUniversalTime(),
DateTime.MinValue.ToUniversalTime(),
DateTime.MaxValue.ToUniversalTime(),
DateTime.MinValue.ToUniversalTime(),
DateTime.MaxValue.ToUniversalTime(),
DateTime.MinValue.ToUniversalTime()
},
null);
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "Variant",
"Variant",
BuiltInType.Variant,
ValueRanks.OneDimension,
new Variant[] { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 });
var doc1 = new XmlDocument();
CreateAnalogItemVariable(
analogArrayFolder,
daAnalogArray + "XmlElement",
"XmlElement",
BuiltInType.XmlElement,
ValueRanks.OneDimension,
new XmlElement[]
{
doc1.CreateElement("tag1"),
doc1.CreateElement("tag2"),
doc1.CreateElement("tag3"),
doc1.CreateElement("tag4"),
doc1.CreateElement("tag5"),
doc1.CreateElement("tag6"),
doc1.CreateElement("tag7"),
doc1.CreateElement("tag8"),
doc1.CreateElement("tag9"),
doc1.CreateElement("tag10")
});

ResetRandomGenerator(12);
FolderState discreteTypeFolder = CreateFolder(
Expand Down Expand Up @@ -4162,6 +3985,11 @@

BuiltInType builtInType = TypeInfo.GetBuiltInType(dataType, Server.TypeTree);

if (!TypeInfo.IsNumericType(builtInType))
{
throw new ArgumentException("AnalogItem must have a numeric DataType.", nameof(dataType));
}

// Simulate a mV Voltmeter
Range newRange = GetAnalogRange(builtInType);
// Using anything but 120,-10 fails a few tests
Expand Down Expand Up @@ -4595,6 +4423,7 @@
};
variable.Value = GetNewValue(variable);
variable.StatusCode = StatusCodes.Good;
variable.Description = "Default Description";

if (valueRank == ValueRanks.OneDimension)
{
Expand Down Expand Up @@ -5114,7 +4943,7 @@
private int m_simulationsRunning;
private readonly List<BaseDataVariableState> m_dynamicNodes = [];

private static readonly bool[] s_booleanArray

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client.ComplexTypes

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client.ComplexTypes

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Server

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Server

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Gds

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Gds

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Server

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Server

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client.ComplexTypes

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client.ComplexTypes

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4946 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_booleanArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)
= [true, false, true, false, true, false, true, false, true];

private static readonly double[] s_doubleArray =
Expand All @@ -5135,10 +4964,10 @@

private static readonly int[] s_int32Array = [10, 11, 12, 13, 14, 15, 16, 17, 18, 19];

private static readonly string[] s_stringArray

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client.ComplexTypes

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client.ComplexTypes

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Server

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Server

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Gds

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Gds

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Server

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Server

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client.ComplexTypes

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client.ComplexTypes

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4967 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_stringArray' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)
= ["en", "fr", "de", "en", "fr", "de", "en", "fr", "de", "en"];

private static readonly string[] s_stringArray0 =

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client.ComplexTypes

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client.ComplexTypes

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Server

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Server

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Gds

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Gds

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Server

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Server

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client.ComplexTypes

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client.ComplexTypes

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-ubuntu-latest-Client

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Client

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / Analyze (csharp)

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)

Check warning on line 4970 in Applications/Quickstarts.Servers/ReferenceServer/ReferenceNodeManager.cs

View workflow job for this annotation

GitHub Actions / test-windows-latest-Gds

Unused field 's_stringArray0' (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1823)
[
"a00",
"b10",
Expand Down
Loading