65 references to InstanceDescriptor
PresentationCore (22)
System\Windows\CultureInfoConverter.cs (1)
142return new InstanceDescriptor(method, new object[] { culture.Name });
System\Windows\DurationConverter.cs (3)
119return new InstanceDescriptor(mi, new object[] { durationValue.TimeSpan }); 125return new InstanceDescriptor(mi, null); 133return new InstanceDescriptor(mi, null);
System\Windows\FontStretchConverter.cs (1)
111return new InstanceDescriptor(mi, new object[]{c.ToOpenTypeStretch()});
System\Windows\FontStyleConverter.cs (1)
111return new InstanceDescriptor(ci, new object[]{c});
System\Windows\FontWeightConverter.cs (1)
111return new InstanceDescriptor(mi, new object[]{c.ToOpenTypeWeight()});
System\Windows\Ink\StrokeCollectionConverter.cs (1)
158return new InstanceDescriptor(ci, new object[] { stream });
System\Windows\Markup\XmlLanguageConverter.cs (1)
135return new InstanceDescriptor(method, new object[] { xmlLanguage.IetfLanguageTag });
System\Windows\Media\Animation\KeySplineConverter.cs (1)
116return new InstanceDescriptor(ci, new object[]
System\Windows\Media\Animation\KeyTimeConverter.cs (4)
150return new InstanceDescriptor(mi, new object[] { keyTime.Percent }); 156return new InstanceDescriptor(mi, new object[] { keyTime.TimeSpan }); 162return new InstanceDescriptor(mi, null); 168return new InstanceDescriptor(mi, null);
System\Windows\Media\Animation\RepeatBehaviorConverter.cs (3)
130return new InstanceDescriptor(mi, null); 136return new InstanceDescriptor(mi, new object[] { repeatBehavior.Count }); 142return new InstanceDescriptor(mi, new object[] { repeatBehavior.Duration });
System\Windows\Media\ColorConverter.cs (1)
117return new InstanceDescriptor(mi, new object[]{c.A, c.R, c.G, c.B});
System\Windows\Media\PixelFormatConverter.cs (1)
116return new InstanceDescriptor(ci, new object[]{p.ToString()});
System\Windows\Media\RequestCachePolicyConverter.cs (2)
128return new InstanceDescriptor(ci, new object[] { httpPolicy.Level }); 143return new InstanceDescriptor(ci, new object[] { policy.Level });
System\Windows\TextDecorationCollectionConverter.cs (1)
188return new InstanceDescriptor(ci, new object[]{value});
PresentationFramework (10)
System\Windows\Controls\DataGridLengthConverter.cs (1)
147return new InstanceDescriptor(ci, new object[] { length.Value, length.UnitType });
System\Windows\Controls\VirtualizationCacheLengthConverter.cs (1)
153return (new InstanceDescriptor(ci, new object[] { gl.CacheBeforeViewport, gl.CacheAfterViewport }));
System\Windows\CornerRadiusConverter.cs (1)
150return new InstanceDescriptor(ci, new object[] { cr.TopLeft, cr.TopRight, cr.BottomRight, cr.BottomLeft });
System\Windows\DynamicResourceExtensionConverter.cs (1)
54return new InstanceDescriptor(typeof(DynamicResourceExtension).GetConstructor(new Type[] { typeof(object) }),
System\Windows\FigureLengthConverter.cs (1)
165return (new InstanceDescriptor(ci, new object[] { fl.Value, fl.FigureUnitType }));
System\Windows\GridLengthConverter.cs (1)
184return (new InstanceDescriptor(ci, new object[] { gl.Value, gl.GridUnitType }));
System\Windows\LengthConverter.cs (1)
160return new InstanceDescriptor(ci, new object[] { l });
System\Windows\TemplateBindingExtensionConverter.cs (1)
57return new InstanceDescriptor(typeof(TemplateBindingExtension).GetConstructor(new Type[] { typeof(DependencyProperty) }),
System\Windows\ThemeModeConverter.cs (1)
114return new InstanceDescriptor(ci, new object[] { value });
System\Windows\ThicknessConverter.cs (1)
139return new InstanceDescriptor(ci, new object[] { thickness.Left, thickness.Top, thickness.Right, thickness.Bottom });
System.ComponentModel.TypeConverter (21)
System\ComponentModel\CultureInfoConverter.cs (1)
160return new InstanceDescriptor(
System\ComponentModel\DateOnlyConverter.cs (1)
98return new InstanceDescriptor(typeof(DateOnly).GetConstructor(new Type[] { typeof(int), typeof(int), typeof(int) }), new object[] { date.Year, date.Month, date.Day });
System\ComponentModel\DateTimeConverter.cs (2)
125return new InstanceDescriptor( 131return new InstanceDescriptor(
System\ComponentModel\DateTimeOffsetConverter.cs (2)
137return new InstanceDescriptor( 143return new InstanceDescriptor(
System\ComponentModel\DecimalConverter.cs (1)
50return new InstanceDescriptor(ctor, new object[] { decimal.GetBits(decimalValue) });
System\ComponentModel\EnumConverter.cs (2)
158return new InstanceDescriptor(method, new object[] { EnumType, convertedValue }); 170return new InstanceDescriptor(info, null);
System\ComponentModel\GuidConverter.cs (1)
62return new InstanceDescriptor(ctor, new object?[] { value.ToString() });
System\ComponentModel\TimeOnlyConverter.cs (2)
95return new InstanceDescriptor(typeof(TimeOnly).GetConstructor(new Type[] { typeof(long) }), new object[] { time.Ticks }); 98return new InstanceDescriptor(typeof(TimeOnly).GetConstructor(new Type[] { typeof(int), typeof(int), typeof(int), typeof(int), typeof(int) }),
System\ComponentModel\TimeSpanConverter.cs (1)
69return new InstanceDescriptor(
System\ComponentModel\UriTypeConverter.cs (1)
75return new InstanceDescriptor(ctor, new object[] { uri.OriginalString, GetUriKind(uri) });
System\ComponentModel\VersionConverter.cs (1)
76return new InstanceDescriptor(ctor, new object[] { version.Major, version.Minor, version.Build, version.Revision });
System\Drawing\ColorConverter.cs (1)
128return new InstanceDescriptor(member, args);
System\Drawing\PointConverter.cs (1)
87return new InstanceDescriptor(ctor, new object[] { pt.X, pt.Y });
System\Drawing\RectangleConverter.cs (1)
89return new InstanceDescriptor(ctor, new object[] {
System\Drawing\SizeConverter.cs (1)
85return new InstanceDescriptor(ctor, new object[] { size.Width, size.Height });
System\Drawing\SizeFConverter.cs (1)
82return new InstanceDescriptor(ctor, new object[] { size.Width, size.Height });
System\Security\Authentication\ExtendedProtection\ExtendedProtectionPolicyTypeConverter.cs (1)
53return new InstanceDescriptor(constructor, parameterValues);
System.Data.Common (6)
System\Data\ColumnTypeConverter.cs (1)
99return new InstanceDescriptor(method, new object[] { ((Type)newValue).AssemblyQualifiedName! });
System\Data\Common\DataColumnMapping.cs (1)
174return new InstanceDescriptor(ctor, values);
System\Data\Common\DataTableMapping.cs (1)
198return new InstanceDescriptor(ctor, values);
System\Data\ConstraintConverter.cs (2)
43return new InstanceDescriptor(ctor, new object[] { constr.ConstraintName, constr.ColumnNames, constr.IsPrimaryKey }); 54return new InstanceDescriptor(ctor, new object[] { constr.ConstraintName, constr.ParentKey.Table.TableName, constr.ParentColumnNames,
System\Data\RelationshipConverter.cs (1)
68return new InstanceDescriptor(ctor, values);
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonControlLengthConverter.cs (1)
133return new InstanceDescriptor(ci, new object[] { length.Value, length.RibbonControlLengthUnitType });
System.Windows.Forms (2)
System\Windows\Forms\Controls\MonthCalendar\SelectionRangeConverter.cs (1)
128return new InstanceDescriptor(ctor, new object[] { range.Start, range.End });
System\Windows\Forms\Input\CursorConverter.cs (1)
127return new InstanceDescriptor(prop, null);
System.Xaml (3)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\Replacements\TypeUriConverter.cs (1)
47return new InstanceDescriptor(constructor, new object[] { uri.OriginalString, uriKind });
System\Windows\Markup\StaticExtensionsToInstanceDescriptorsConverter.cs (1)
37return new InstanceDescriptor(
System\Windows\Markup\TypeExtensionConverter.cs (1)
37return new InstanceDescriptor(