dotnet-core/release-notes/3.0/preview/api-diff/preview8/Asp.Net/3.0-preview8_System.Drawing.md
Anirudh Agnihotry b25ebab860
Consistent naming and casing across preview 8 and preview 9 (#3314)
* feedback addressed

* temp

* camel casing

* fixing the title for preview 8 standalone packages
2019-09-07 20:18:39 -07:00

3.9 KiB

System.Drawing

+namespace System.Drawing {
+    public class FontConverter : TypeConverter {
+        public FontConverter();
+        public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType);
+        public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType);
+        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value);
+        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType);
+        public override object CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues);
+        public override bool GetCreateInstanceSupported(ITypeDescriptorContext context);
+        public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes);
+        public override bool GetPropertiesSupported(ITypeDescriptorContext context);
+        public sealed class FontNameConverter : TypeConverter, IDisposable {
+            public FontNameConverter();
+            public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType);
+            public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value);
+            public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context);
+            public override bool GetStandardValuesExclusive(ITypeDescriptorContext context);
+            public override bool GetStandardValuesSupported(ITypeDescriptorContext context);
+            void System.IDisposable.Dispose();
+        }
+        public class FontUnitConverter : EnumConverter {
+            public FontUnitConverter();
+            public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context);
+        }
+    }
+    public class IconConverter : ExpandableObjectConverter {
+        public IconConverter();
+        public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType);
+        public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType);
+        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value);
+        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType);
+    }
+    public class ImageConverter : TypeConverter {
+        public ImageConverter();
+        public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType);
+        public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType);
+        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value);
+        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType);
+        public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes);
+        public override bool GetPropertiesSupported(ITypeDescriptorContext context);
+    }
+    public class ImageFormatConverter : TypeConverter {
+        public ImageFormatConverter();
+        public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType);
+        public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType);
+        public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value);
+        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType);
+        public override TypeConverter.StandardValuesCollection GetStandardValues(ITypeDescriptorContext context);
+        public override bool GetStandardValuesSupported(ITypeDescriptorContext context);
+    }
+}