Home
last modified time | relevance | path

Searched refs:attributeContext (Results 1 – 5 of 5) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Composition.TypedParts/src/System/Composition/TypedParts/
H A DTypedPartExportDescriptorProvider.cs19 …ypedPartExportDescriptorProvider(IEnumerable<Type> types, AttributedModelProvider attributeContext) in TypedPartExportDescriptorProvider() argument
21 var activationFeatures = CreateActivationFeatures(attributeContext); in TypedPartExportDescriptorProvider()
22 var typeInspector = new TypeInspector(attributeContext, activationFeatures); in TypedPartExportDescriptorProvider()
125 …ivate static ActivationFeature[] CreateActivationFeatures(AttributedModelProvider attributeContext) in CreateActivationFeatures() argument
129 new PropertyInjectionFeature(attributeContext), in CreateActivationFeatures()
130 new OnImportsSatisfiedFeature(attributeContext), in CreateActivationFeatures()
135 …nal static ActivationFeature[] DebugGetActivationFeatures(AttributedModelProvider attributeContext) in DebugGetActivationFeatures() argument
137 return CreateActivationFeatures(attributeContext); in DebugGetActivationFeatures()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Composition.TypedParts/src/System/Composition/TypedParts/ActivationFeatures/
H A DOnImportsSatisfiedFeature.cs23 public OnImportsSatisfiedFeature(AttributedModelProvider attributeContext) in OnImportsSatisfiedFeature() argument
25 if (attributeContext == null) throw new ArgumentNullException(nameof(attributeContext)); in OnImportsSatisfiedFeature()
26 _attributeContext = attributeContext; in OnImportsSatisfiedFeature()
H A DPropertyInjectionFeature.cs23 public PropertyInjectionFeature(AttributedModelProvider attributeContext) in PropertyInjectionFeature() argument
25 _attributeContext = attributeContext; in PropertyInjectionFeature()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Composition.TypedParts/src/System/Composition/TypedParts/Discovery/
H A DDiscoveredPart.cs42 AttributedModelProvider attributeContext, in DiscoveredPart() argument
47 _attributeContext = attributeContext; in DiscoveredPart()
54 AttributedModelProvider attributeContext, in DiscoveredPart() argument
58 _attributeContext = attributeContext; in DiscoveredPart()
H A DTypeInspector.cs22 …public TypeInspector(AttributedModelProvider attributeContext, ActivationFeature[] activationFeatu… in TypeInspector() argument
24 _attributeContext = attributeContext; in TypeInspector()