39 references to GetRuntimeProperty
ILCompiler.Compiler (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
352/// <see cref="System.Reflection.RuntimeReflectionExtensions.GetRuntimeProperty(System.Type, string)"/>
illink (1)
ILLink.RoslynAnalyzer (1)
src\runtime\src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
352/// <see cref="System.Reflection.RuntimeReflectionExtensions.GetRuntimeProperty(System.Type, string)"/>
Microsoft.AspNetCore.Http.Extensions (2)
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutorFSharpSupport.cs (2)
222.GetRuntimeProperty("None"); 228.GetRuntimeProperty("None");
Microsoft.AspNetCore.Mvc.Core (3)
ModelBinding\Metadata\ModelAttributes.cs (1)
140var metadataProperty = metadataType.GetRuntimeProperty(property.Name);
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutorFSharpSupport.cs (2)
222.GetRuntimeProperty("None"); 228.GetRuntimeProperty("None");
Microsoft.AspNetCore.Mvc.Razor (1)
RazorPageActivator.cs (1)
89modelType = pageType.GetRuntimeProperty(ModelPropertyName)?.PropertyType;
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
ViewDataEvaluator.cs (1)
200var propertyInfo = container.GetType().GetRuntimeProperty(propertyName);
Microsoft.AspNetCore.OpenApi (2)
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutorFSharpSupport.cs (2)
222.GetRuntimeProperty("None"); 228.GetRuntimeProperty("None");
Microsoft.AspNetCore.SignalR.Core (2)
src\aspnetcore\src\Shared\ObjectMethodExecutor\ObjectMethodExecutorFSharpSupport.cs (2)
222.GetRuntimeProperty("None"); 228.GetRuntimeProperty("None");
Microsoft.Extensions.Compliance.Redaction (1)
parent\parent\parent\eng\MSBuild\parent\parent\src\Shared\Data.Validation\LengthAttribute.cs (1)
150private static PropertyInfo? GetCountProperty(object value) => value.GetType().GetRuntimeProperty("Count");
Microsoft.Extensions.Diagnostics.HealthChecks.ResourceUtilization (1)
parent\parent\parent\eng\MSBuild\parent\parent\src\Shared\Data.Validation\LengthAttribute.cs (1)
150private static PropertyInfo? GetCountProperty(object value) => value.GetType().GetRuntimeProperty("Count");
Microsoft.Extensions.Diagnostics.Probes (1)
parent\parent\parent\eng\MSBuild\parent\parent\src\Shared\Data.Validation\LengthAttribute.cs (1)
150private static PropertyInfo? GetCountProperty(object value) => value.GetType().GetRuntimeProperty("Count");
Microsoft.Extensions.Diagnostics.ResourceMonitoring (1)
parent\parent\parent\eng\MSBuild\parent\parent\src\Shared\Data.Validation\LengthAttribute.cs (1)
150private static PropertyInfo? GetCountProperty(object value) => value.GetType().GetRuntimeProperty("Count");
Microsoft.Extensions.Http.Resilience (1)
parent\parent\parent\eng\MSBuild\parent\parent\src\Shared\Data.Validation\LengthAttribute.cs (1)
150private static PropertyInfo? GetCountProperty(object value) => value.GetType().GetRuntimeProperty("Count");
Microsoft.Extensions.Telemetry (1)
parent\parent\parent\eng\MSBuild\parent\parent\src\Shared\Data.Validation\LengthAttribute.cs (1)
150private static PropertyInfo? GetCountProperty(object value) => value.GetType().GetRuntimeProperty("Count");
Microsoft.Maui.Controls (6)
Interactivity\PropertyCondition.cs (2)
42 return Property.DeclaringType.GetRuntimeProperty(Property.PropertyName); 72 return Property.DeclaringType.GetRuntimeProperty(Property.PropertyName);
Setter.cs (1)
39 minfo = Property.DeclaringType.GetRuntimeProperty(Property.PropertyName);
Shell\ShellContent.cs (2)
389 PropertyInfo prop = type.GetRuntimeProperty(attrib.Name); 409 PropertyInfo prop = type.GetRuntimeProperty(attrib.Name);
StyleSheets\Style.cs (1)
104 minfo = property.DeclaringType.GetRuntimeProperty(property.PropertyName);
Microsoft.Maui.Controls.Xaml (6)
MarkupExtensionParser.cs (3)
76 setter = t.GetRuntimeProperty(prop).SetMethod; 87 setter = markupExtension.GetType().GetRuntimeProperty(prop).SetMethod; 99 value = strValue.ConvertTo(markupExtension.GetType().GetRuntimeProperty(prop).PropertyType,
MarkupExtensions\AppThemeBindingExtension.cs (1)
85 minfo = bp.DeclaringType.GetRuntimeProperty(bp.PropertyName);
MarkupExtensions\OnIdiomExtension.cs (1)
80 minfo = bp.DeclaringType.GetRuntimeProperty(bp.PropertyName);
MarkupExtensions\OnPlatformExtension.cs (1)
102 minfo = bp.DeclaringType.GetRuntimeProperty(bp.PropertyName);
Shared (1)
Data.Validation\LengthAttribute.cs (1)
150private static PropertyInfo? GetCountProperty(object value) => value.GetType().GetRuntimeProperty("Count");
System.ComponentModel.Annotations (3)
System\ComponentModel\DataAnnotations\CompareAttribute.cs (1)
38var otherPropertyInfo = validationContext.ObjectType.GetRuntimeProperty(OtherProperty);
System\ComponentModel\DataAnnotations\LocalizableString.cs (1)
126var property = _resourceType.GetRuntimeProperty(_propertyValue);
System\ComponentModel\DataAnnotations\MaxLengthAttribute.cs (1)
127PropertyInfo? property = value.GetType().GetRuntimeProperty("Count");
System.Composition.Convention (2)
System\Composition\Convention\PartConventionBuilder.cs (2)
678underlyingPi ??= pi.DeclaringType.GetRuntimeProperty(pi.Name); 715underlyingPi ??= pi.DeclaringType.GetRuntimeProperty(pi.Name);
System.Composition.TypedParts (1)
System\Composition\TypedParts\Discovery\DiscoveredPropertyExport.cs (1)
40var property = closedPartType.AsType().GetRuntimeProperty(_property.Name);