2 instantiations of LoggingProperty
Microsoft.Gen.Logging (2)
Model\LoggingMethodParameterExtensions.cs (1)
17var firstProperty = new LoggingProperty
Parsing\Parser.LogProperties.cs (1)
195var lp = new LoggingProperty
20 references to LoggingProperty
Microsoft.Gen.Logging (20)
Emission\Emitter.Method.cs (5)
181static bool ShouldStringifyProperty(LoggingProperty p) 220static string ConvertPropertyToString(LoggingProperty lp, string arg) 632IEnumerable<LoggingProperty> propertyChain, 633LoggingProperty leafProperty, 644foreach (var property in propertyChain)
Model\LoggingMethodParameter.cs (1)
35public List<LoggingProperty> Properties = [];
Model\LoggingMethodParameterExtensions.cs (9)
13Action<IEnumerable<LoggingProperty>, LoggingProperty> callback) 15var propertyChain = new LinkedList<LoggingProperty>(); 17var firstProperty = new LoggingProperty 34LinkedList<LoggingProperty> propertyChain, 35IReadOnlyCollection<LoggingProperty> propertiesToLog, 36Action<IEnumerable<LoggingProperty>, LoggingProperty> callback) 38foreach (var propertyToLog in propertiesToLog)
Model\LoggingProperty.cs (1)
24public List<LoggingProperty> Properties = [];
Parsing\Parser.LogProperties.cs (3)
84List<LoggingProperty>? GetTypePropertiesToLog( 91var result = new List<LoggingProperty>(); 195var lp = new LoggingProperty
Parsing\Parser.TagProvider.cs (1)
48LoggingProperty lp,