17 references to ObjectConstructionStrategy
System.Text.Json.SourceGeneration (17)
JsonSourceGenerator.Emitter.cs (6)
499ObjectConstructionStrategy constructionStrategy = typeMetadata.ConstructionStrategy; 502string parameterizedCreatorInvocation = constructionStrategy == ObjectConstructionStrategy.ParameterizedConstructor 517if (constructionStrategy is ObjectConstructionStrategy.ParameterizedConstructor) 522if (constructionStrategy is ObjectConstructionStrategy.ParameterlessConstructor 523or ObjectConstructionStrategy.ParameterizedConstructor) 1475{ ConstructionStrategy: ObjectConstructionStrategy.ParameterlessConstructor } => $"() => new {typeSpec.TypeRef.FullyQualifiedName}()",
JsonSourceGenerator.Parser.cs (11)
514ObjectConstructionStrategy constructionStrategy = default; 593constructionStrategy = ObjectConstructionStrategy.ParameterlessConstructor; 1438out ObjectConstructionStrategy constructionStrategy, 1445constructionStrategy = ObjectConstructionStrategy.NotApplicable; 1456constructionStrategy = ObjectConstructionStrategy.ParameterlessConstructor; 1463constructionStrategy = ObjectConstructionStrategy.ParameterizedConstructor; 1473constructionStrategy = ObjectConstructionStrategy.NotApplicable; 1491return constructionStrategy is ObjectConstructionStrategy.NotApplicable ? null : constructorParameters; 1498ref ObjectConstructionStrategy constructionStrategy) 1500if (constructionStrategy is ObjectConstructionStrategy.NotApplicable || properties is null) 1535constructionStrategy = ObjectConstructionStrategy.ParameterizedConstructor;