2 writes to LongProperty
Microsoft.Gen.Logging.Generated.Tests (2)
LogPropertiesTests.cs (2)
384
var structToLog = new MyCustomStruct {
LongProperty
= 1L, NullableTransitiveStructProperty2 = transitiveStruct };
414
MyCustomStruct? structToLog = new MyCustomStruct {
LongProperty
= 1L, NullableTransitiveStructProperty = transitiveStruct };
11 references to LongProperty
Microsoft.Gen.Logging.Generated.Tests (11)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\Logging.g.cs (6)
5099
state.TagArray[14] = new("classToLog.CustomStructProperty.LongProperty", classToLog?.CustomStructProperty.
LongProperty
);
5103
state.TagArray[10] = new("classToLog.CustomStructNullableProperty.LongProperty", classToLog?.CustomStructNullableProperty?.
LongProperty
);
5107
state.TagArray[6] = new("classToLog.CustomStructNullableProperty2.LongProperty", classToLog?.CustomStructNullableProperty2?.
LongProperty
);
5196
state.TagArray[3] = new("structParam.LongProperty", structParam.
LongProperty
);
5234
state.TagArray[3] = new("structParam.LongProperty", structParam?.
LongProperty
);
5272
state.TagArray[3] = new("structParam.LongProperty", structParam?.
LongProperty
);
LogPropertiesTests.cs (5)
260
["classToLog.CustomStructProperty.LongProperty"] = classToLog.CustomStructProperty.
LongProperty
.ToInvariantString(),
270
["classToLog.CustomStructNullableProperty.LongProperty"] = classToLog.CustomStructNullableProperty?.
LongProperty
.ToInvariantString(),
280
["classToLog.CustomStructNullableProperty2.LongProperty"] = classToLog.CustomStructNullableProperty2?.
LongProperty
.ToInvariantString(),
394
["structParam.LongProperty"] = structToLog.
LongProperty
.ToInvariantString(),
424
["structParam.LongProperty"] = structToLog.Value.
LongProperty
.ToInvariantString(),