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 };
5 references to LongProperty
Microsoft.Gen.Logging.Generated.Tests (5)
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(),