Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.ISupportInitialize))]
// moved to System.ObjectModel
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.TypeConverterAttribute))]
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.TypeDescriptionProviderAttribute))]

namespace System
{
Expand Down Expand Up @@ -583,13 +584,6 @@ protected TypeDescriptionProvider(System.ComponentModel.TypeDescriptionProvider
public virtual System.ComponentModel.ICustomTypeDescriptor GetTypeDescriptor(System.Type objectType, object instance) { throw null; }
public virtual bool IsSupportedType(System.Type type) { throw null; }
}
[System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited = true)]
public sealed partial class TypeDescriptionProviderAttribute : System.Attribute
{
public TypeDescriptionProviderAttribute(string typeName) { }
public TypeDescriptionProviderAttribute(System.Type type) { }
public string TypeName { get { throw null; } }
}
public sealed partial class TypeDescriptor
{
internal TypeDescriptor() { }
Expand Down
1 change: 1 addition & 0 deletions src/System.ComponentModel.TypeConverter/src/ILLinkTrim.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<linker>
<assembly fullname="System.ComponentModel.TypeConverter">
<type fullname="MS.Internal.Xml.Linq.ComponentModel.*" />
<type fullname="System.ComponentModel.TypeDescriptor">
<!-- called through reflection by System.ComponentModel.DefaultValueAttribute -->
<method name="ConvertFromInvariantString" />
Expand Down
Loading