Added Parameter attribute to constructor parameters (#6516)
authorGerald Versluis <gerald@verslu.is>
Mon, 17 Jun 2019 08:41:24 +0000 (10:41 +0200)
committerStephane Delcroix <stephane@delcroix.org>
Mon, 17 Jun 2019 08:41:24 +0000 (10:41 +0200)
Xamarin.Forms.Core/Items/ItemsLayout.cs
Xamarin.Forms.Core/Items/ListItemsLayout.cs

index db9f23f..76c9590 100644 (file)
@@ -4,7 +4,7 @@
        {
                public ItemsLayoutOrientation Orientation { get; }
 
-               protected ItemsLayout(ItemsLayoutOrientation orientation)
+               protected ItemsLayout([Parameter("Orientation")] ItemsLayoutOrientation orientation)
                {
                        CollectionView.VerifyCollectionViewFlagEnabled(constructorHint: nameof(ItemsLayout));
                        Orientation = orientation;
index a1ba613..6b80af7 100644 (file)
@@ -3,7 +3,7 @@
        public class ListItemsLayout : ItemsLayout
        {
                // TODO hartez 2018/08/29 17:28:42 Consider changing this name to LinearItemsLayout; not everything using it is a list (e.g., Carousel) 
-               public ListItemsLayout(ItemsLayoutOrientation orientation) : base(orientation)
+               public ListItemsLayout([Parameter("Orientation")] ItemsLayoutOrientation orientation) : base(orientation)
                {
                }