23 overrides of ShouldSerializeValue
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\MetadataPropertyDescriptorWrapper.cs (1)
53public override bool ShouldSerializeValue(object component) { return _descriptor.ShouldSerializeValue(component); }
System.ComponentModel.TypeConverter (6)
MS\Internal\Xml\Linq\ComponentModel\XComponentModel.cs (1)
130public override bool ShouldSerializeValue(object component)
System\ComponentModel\Design\DesignerOptionService.cs (2)
428public override bool ShouldSerializeValue(object component) => _property.ShouldSerializeValue(_target); 496public override bool ShouldSerializeValue(object component) => false;
System\ComponentModel\ExtendedPropertyDescriptor.cs (1)
137public override bool ShouldSerializeValue(object comp)
System\ComponentModel\ReflectPropertyDescriptor.cs (1)
1166public override bool ShouldSerializeValue(object component)
System\ComponentModel\TypeConverter.cs (1)
411public override bool ShouldSerializeValue(object component) => false;
System.Data.Common (5)
System\Data\Common\DbConnectionStringBuilderDescriptor.cs (1)
75public override bool ShouldSerializeValue(object component)
System\Data\Common\DbEnumerator.cs (1)
143public override bool ShouldSerializeValue(object component) => false;
System\Data\DataColumnPropertyDescriptor.cs (1)
82public override bool ShouldSerializeValue(object component) => false;
System\Data\DataRelationPropertyDescriptor.cs (1)
42public override bool ShouldSerializeValue(object component) => false;
System\Data\DataTablePropertyDescriptor.cs (1)
42public override bool ShouldSerializeValue(object component) => false;
System.Windows.Forms (3)
System\Windows\Forms\ActiveX\AxHost.AxPropertyDescriptor.cs (1)
245public override bool ShouldSerializeValue(object o)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (1)
915public override bool ShouldSerializeValue(object component)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MergePropertyDescriptor.cs (1)
329public override bool ShouldSerializeValue(object component)
System.Windows.Forms.Design (6)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1227public override bool ShouldSerializeValue(object component) => false;
System\ComponentModel\Design\EventBindingService.EventPropertyDescriptor.cs (1)
277public override bool ShouldSerializeValue(object component) => CanResetValue(component);
System\ComponentModel\Design\InheritedPropertyDescriptor.cs (1)
275public override bool ShouldSerializeValue(object component)
System\ComponentModel\Design\Serialization\DesignerSerializationManager.cs (1)
1040public override bool ShouldSerializeValue(object component)
System\Windows\Forms\Design\ControlDesigner.CanResetSizePropertyDescriptor.cs (1)
36public override bool ShouldSerializeValue(object component) => true;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1391public override bool ShouldSerializeValue(object component)
System.Windows.Forms.Tests (2)
System\Windows\Forms\ListBindingHelperTests.cs (1)
761public override bool ShouldSerializeValue(object component)
System\Windows\Forms\PropertyGridInternal\AccessibleObjects\PropertyDescriptorGridEntry.PropertyDescriptorGridEntryAccessibleObjectTests.cs (1)
161public override bool ShouldSerializeValue(object component)
442 references to ShouldSerializeValue
PresentationFramework (1)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
292return pd.ShouldSerializeValue(instance);
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\MetadataPropertyDescriptorWrapper.cs (1)
53public override bool ShouldSerializeValue(object component) { return _descriptor.ShouldSerializeValue(component); }
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\DesignerOptionService.cs (1)
428public override bool ShouldSerializeValue(object component) => _property.ShouldSerializeValue(_target);
System.Data.Common (1)
System\Data\xmlsaver.cs (1)
160if ((!pd.ShouldSerializeValue(instance) || !ContainsDesignerSerializationVisibleAttribute(pd)) && (bIsSqlType == false))
System.Windows.Forms (5)
System\Windows\Forms\ActiveX\AxHost.AxPropertyDescriptor.cs (1)
247return _baseDescriptor.ShouldSerializeValue(o);
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (1)
1513if (!saveAllProperties && !currentProperty.ShouldSerializeValue(_control))
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MergePropertyDescriptor.cs (1)
335if (!_descriptors[i].ShouldSerializeValue(GetPropertyOwnerForComponent(array, i)!))
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (1)
441return PropertyDescriptor.ShouldSerializeValue(owner!);
System\Windows\Forms\DataBinding\ListBindingConverter.cs (1)
142if (prop is not null && prop.ShouldSerializeValue(b))
System.Windows.Forms.Design (17)
System\ComponentModel\Design\ComponentDesigner.ShadowPropertyCollection.cs (1)
87return shadowedPropertyDescriptor.ShouldSerializeValue(_designer.Component);
System\ComponentModel\Design\InheritedPropertyDescriptor.cs (3)
205if (!_propertyDescriptor.ShouldSerializeValue(component)) 279return _propertyDescriptor.ShouldSerializeValue(component) && Attributes.Contains(DesignerSerializationVisibilityAttribute.Content); 284return _propertyDescriptor.ShouldSerializeValue(component);
System\ComponentModel\Design\Serialization\CodeDomComponentSerializationService.CodeDomSerializationStore.ComponentListCodeDomSerializer.cs (2)
583if (!prop.ShouldSerializeValue(data._value) 617if (md._member is PropertyDescriptor prop && !prop.ShouldSerializeValue(data._value))
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
2225ResourceCodeDomSerializer.SerializeMetadata(manager, name, property.GetValue(value), property.ShouldSerializeValue(value));
System\ComponentModel\Design\Serialization\DesignerSerializationManager.cs (1)
1042return _property.ShouldSerializeValue(_target);
System\ComponentModel\Design\Serialization\PropertyMemberCodeDomSerializer.cs (2)
29if (!property.ShouldSerializeValue(value)) 370bool shouldSerializeProperty = propertyToSerialize.ShouldSerializeValue(value);
System\ComponentModel\Design\Serialization\ResourceCodeDomSerializer.SerializationResourceManager.cs (1)
678writeValue = prop.ShouldSerializeValue(tree.Owner);
System\Windows\Forms\Design\ButtonBaseDesigner.cs (1)
32if (!prop.ShouldSerializeValue(Component))
System\Windows\Forms\Design\ControlDesigner.CanResetSizePropertyDescriptor.cs (1)
27public override bool CanResetValue(object component) => _basePropDesc.ShouldSerializeValue(component);
System\Windows\Forms\Design\ControlDesigner.cs (2)
919|| !visibleProp.ShouldSerializeValue(component) 925|| !enabledProp.ShouldSerializeValue(component)
System\Windows\Forms\Design\DocumentDesigner.cs (1)
678if (backProp is not null && backProp.PropertyType == typeof(Color) && !backProp.ShouldSerializeValue(Component))
System\Windows\Forms\Design\TextBoxBaseDesigner.cs (1)
77return TypeDescriptor.GetProperties(typeof(TextBoxBase))["Text"]!.ShouldSerializeValue(Component);
System.Windows.Forms.Design.Tests (3)
System\ComponentModel\Design\Serialization\DesignerSerializationManagerTests.cs (1)
231Assert.True(property.ShouldSerializeValue(new Component()));
System\Windows\Forms\Design\InheritedPropertyDescriptorTests.cs (2)
63inheritedPropertyDescriptor.ShouldSerializeValue(control).Should().BeFalse(); 66inheritedPropertyDescriptor.ShouldSerializeValue(control).Should().BeTrue();
System.Windows.Forms.Tests (413)
System\Windows\Forms\AxHost.AxPropertyDescriptorTests.cs (2)
1343Assert.True(property.ShouldSerializeValue(control)); 1354Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\ButtonBaseTests.cs (6)
1825Assert.False(property.ShouldSerializeValue(control)); 1830Assert.True(property.ShouldSerializeValue(control)); 1834Assert.False(property.ShouldSerializeValue(control)); 4327Assert.False(property.ShouldSerializeValue(control)); 4331Assert.True(property.ShouldSerializeValue(control)); 4335Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\ColorDialogTests.cs (3)
164Assert.False(property.ShouldSerializeValue(dialog)); 168Assert.True(property.ShouldSerializeValue(dialog)); 172Assert.False(property.ShouldSerializeValue(dialog));
System\Windows\Forms\ColumnHeaderTests.cs (15)
241Assert.False(property.ShouldSerializeValue(item)); 245Assert.False(property.ShouldSerializeValue(item)); 250Assert.True(property.ShouldSerializeValue(item)); 254Assert.True(property.ShouldSerializeValue(item)); 887Assert.False(property.ShouldSerializeValue(header)); 892Assert.False(property.ShouldSerializeValue(header)); 897Assert.False(property.ShouldSerializeValue(header)); 902Assert.True(property.ShouldSerializeValue(header)); 906Assert.True(property.ShouldSerializeValue(header)); 932Assert.Equal(result, property.ShouldSerializeValue(header)); 1083Assert.False(property.ShouldSerializeValue(header)); 1088Assert.True(property.ShouldSerializeValue(header)); 1093Assert.True(property.ShouldSerializeValue(header)); 1098Assert.True(property.ShouldSerializeValue(header)); 1102Assert.True(property.ShouldSerializeValue(header));
System\Windows\Forms\ComboBoxTests.cs (6)
297Assert.False(property.ShouldSerializeValue(control)); 301Assert.True(property.ShouldSerializeValue(control)); 305Assert.False(property.ShouldSerializeValue(control)); 1165Assert.False(property.ShouldSerializeValue(control)); 1169Assert.True(property.ShouldSerializeValue(control)); 1173Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\ComponentModel\Com2Interop\ComNativeDescriptorTests.cs (2)
59Assert.False(handleProperty.ShouldSerializeValue(iPictureDisp)); 141Assert.False(urlProperty.ShouldSerializeValue(mediaPlayer));
System\Windows\Forms\ControlTests.Properties.cs (58)
1622Assert.False(property.ShouldSerializeValue(control)); 1626Assert.True(property.ShouldSerializeValue(control)); 1630Assert.False(property.ShouldSerializeValue(control)); 3695Assert.True(property.ShouldSerializeValue(control)); 3698Assert.True(property.ShouldSerializeValue(control)); 3703Assert.True(property.ShouldSerializeValue(control)); 3707Assert.True(property.ShouldSerializeValue(control)); 4783Assert.False(property.ShouldSerializeValue(control)); 4787Assert.True(property.ShouldSerializeValue(control)); 4791Assert.False(property.ShouldSerializeValue(control)); 5269Assert.False(property.ShouldSerializeValue(control)); 5274Assert.True(property.ShouldSerializeValue(control)); 5278Assert.False(property.ShouldSerializeValue(control)); 5282Assert.True(property.ShouldSerializeValue(control)); 5286Assert.False(property.ShouldSerializeValue(control)); 5656Assert.False(property.ShouldSerializeValue(control)); 5660Assert.True(property.ShouldSerializeValue(control)); 5664Assert.False(property.ShouldSerializeValue(control)); 7598Assert.True(property.ShouldSerializeValue(control)); 7602Assert.True(property.ShouldSerializeValue(control)); 7606Assert.True(property.ShouldSerializeValue(control)); 7610Assert.True(property.ShouldSerializeValue(control)); 7614Assert.True(property.ShouldSerializeValue(control)); 7868Assert.False(property.ShouldSerializeValue(control)); 7872Assert.True(property.ShouldSerializeValue(control)); 7876Assert.False(property.ShouldSerializeValue(control)); 8469Assert.False(property.ShouldSerializeValue(control)); 8473Assert.True(property.ShouldSerializeValue(control)); 8477Assert.True(property.ShouldSerializeValue(control)); 8481Assert.True(property.ShouldSerializeValue(control)); 8485Assert.False(property.ShouldSerializeValue(control)); 9239Assert.False(property.ShouldSerializeValue(control)); 9243Assert.True(property.ShouldSerializeValue(control)); 9247Assert.True(property.ShouldSerializeValue(control)); 9251Assert.True(property.ShouldSerializeValue(control)); 9255Assert.False(property.ShouldSerializeValue(control)); 9663Assert.False(property.ShouldSerializeValue(control)); 9667Assert.True(property.ShouldSerializeValue(control)); 9671Assert.False(property.ShouldSerializeValue(control)); 10472Assert.False(property.ShouldSerializeValue(control)); 10476Assert.True(property.ShouldSerializeValue(control)); 10480Assert.True(property.ShouldSerializeValue(control)); 10484Assert.False(property.ShouldSerializeValue(control)); 10488Assert.True(property.ShouldSerializeValue(control)); 10492Assert.False(property.ShouldSerializeValue(control)); 11779Assert.False(property.ShouldSerializeValue(control)); 11783Assert.True(property.ShouldSerializeValue(control)); 11787Assert.True(property.ShouldSerializeValue(control)); 11791Assert.True(property.ShouldSerializeValue(control)); 11795Assert.False(property.ShouldSerializeValue(control)); 12072Assert.False(property.ShouldSerializeValue(control)); 12077Assert.False(property.ShouldSerializeValue(control)); 12082Assert.False(property.ShouldSerializeValue(control)); 12087Assert.True(property.ShouldSerializeValue(control)); 12091Assert.False(property.ShouldSerializeValue(control)); 13085Assert.False(property.ShouldSerializeValue(control)); 13089Assert.True(property.ShouldSerializeValue(control)); 13093Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\DockPaddingEdgesTests.cs (5)
391Assert.True(property.ShouldSerializeValue(padding)); 412Assert.True(property.ShouldSerializeValue(padding)); 433Assert.True(property.ShouldSerializeValue(padding)); 454Assert.True(property.ShouldSerializeValue(padding)); 475Assert.True(property.ShouldSerializeValue(padding));
System\Windows\Forms\ErrorProviderTests.cs (6)
309Assert.False(property.ShouldSerializeValue(provider)); 312Assert.True(property.ShouldSerializeValue(provider)); 511Assert.False(property.ShouldSerializeValue(provider)); 514Assert.True(property.ShouldSerializeValue(provider)); 558Assert.False(property.ShouldSerializeValue(provider)); 562Assert.True(property.ShouldSerializeValue(provider));
System\Windows\Forms\FontDialogTests.cs (3)
350Assert.False(property.ShouldSerializeValue(dialog)); 355Assert.True(property.ShouldSerializeValue(dialog)); 359Assert.False(property.ShouldSerializeValue(dialog));
System\Windows\Forms\ImageListTests.cs (12)
189Assert.True(property.ShouldSerializeValue(list)); 193Assert.True(property.ShouldSerializeValue(list)); 197Assert.True(property.ShouldSerializeValue(list)); 201Assert.False(property.ShouldSerializeValue(list)); 383Assert.True(property.ShouldSerializeValue(list)); 387Assert.True(property.ShouldSerializeValue(list)); 391Assert.True(property.ShouldSerializeValue(list)); 395Assert.False(property.ShouldSerializeValue(list)); 799Assert.True(property.ShouldSerializeValue(list)); 803Assert.True(property.ShouldSerializeValue(list)); 807Assert.False(property.ShouldSerializeValue(list)); 811Assert.False(property.ShouldSerializeValue(list));
System\Windows\Forms\ListBoxTests.cs (9)
461Assert.False(property.ShouldSerializeValue(control)); 465Assert.True(property.ShouldSerializeValue(control)); 469Assert.False(property.ShouldSerializeValue(control)); 1358Assert.False(property.ShouldSerializeValue(control)); 1362Assert.True(property.ShouldSerializeValue(control)); 1366Assert.False(property.ShouldSerializeValue(control)); 1835Assert.False(property.ShouldSerializeValue(control)); 1839Assert.False(property.ShouldSerializeValue(control)); 1843Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\MdiClientTests.cs (13)
163Assert.False(property.ShouldSerializeValue(control)); 167Assert.True(property.ShouldSerializeValue(control)); 171Assert.True(property.ShouldSerializeValue(control)); 461Assert.True(property.ShouldSerializeValue(control)); 465Assert.True(property.ShouldSerializeValue(control)); 469Assert.True(property.ShouldSerializeValue(control)); 473Assert.True(property.ShouldSerializeValue(control)); 477Assert.True(property.ShouldSerializeValue(control)); 1174Assert.False(property.ShouldSerializeValue(control)); 1178Assert.False(property.ShouldSerializeValue(control)); 1182Assert.False(property.ShouldSerializeValue(control)); 1186Assert.False(property.ShouldSerializeValue(control)); 1190Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\PaddingTests.cs (12)
100Assert.False(property.ShouldSerializeValue(boxedPadding)); 109Assert.True(property.ShouldSerializeValue(boxedPadding)); 120Assert.True(property.ShouldSerializeValue(boxedPadding)); 129Assert.True(property.ShouldSerializeValue(boxedPadding)); 170Assert.True(property.ShouldSerializeValue(boxedPadding)); 179Assert.True(property.ShouldSerializeValue(boxedPadding)); 220Assert.True(property.ShouldSerializeValue(boxedPadding)); 229Assert.True(property.ShouldSerializeValue(boxedPadding)); 270Assert.True(property.ShouldSerializeValue(boxedPadding)); 279Assert.True(property.ShouldSerializeValue(boxedPadding)); 320Assert.True(property.ShouldSerializeValue(boxedPadding)); 329Assert.True(property.ShouldSerializeValue(boxedPadding));
System\Windows\Forms\PageSetupDialogTests.cs (2)
255Assert.False(property.ShouldSerializeValue(dialog)); 258Assert.Equal(expected, property.ShouldSerializeValue(dialog));
System\Windows\Forms\PictureBoxTests.cs (9)
406Assert.False(property.ShouldSerializeValue(pictureBox)); 409Assert.True(property.ShouldSerializeValue(pictureBox)); 414Assert.False(property.ShouldSerializeValue(pictureBox)); 616Assert.False(property.ShouldSerializeValue(pictureBox)); 619Assert.True(property.ShouldSerializeValue(pictureBox)); 624Assert.False(property.ShouldSerializeValue(pictureBox)); 1103Assert.False(property.ShouldSerializeValue(pictureBox)); 1106Assert.True(property.ShouldSerializeValue(pictureBox)); 1111Assert.False(property.ShouldSerializeValue(pictureBox));
System\Windows\Forms\ProgressBarTests.cs (3)
642Assert.False(property.ShouldSerializeValue(control)); 646Assert.True(property.ShouldSerializeValue(control)); 650Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\PropertyGridTests.cs (60)
396Assert.False(property.ShouldSerializeValue(control)); 400Assert.True(property.ShouldSerializeValue(control)); 404Assert.False(property.ShouldSerializeValue(control)); 770Assert.False(property.ShouldSerializeValue(control)); 774Assert.True(property.ShouldSerializeValue(control)); 778Assert.False(property.ShouldSerializeValue(control)); 848Assert.False(property.ShouldSerializeValue(control)); 852Assert.True(property.ShouldSerializeValue(control)); 856Assert.False(property.ShouldSerializeValue(control)); 933Assert.False(property.ShouldSerializeValue(control)); 937Assert.True(property.ShouldSerializeValue(control)); 941Assert.False(property.ShouldSerializeValue(control)); 1011Assert.False(property.ShouldSerializeValue(control)); 1015Assert.True(property.ShouldSerializeValue(control)); 1019Assert.False(property.ShouldSerializeValue(control)); 1096Assert.False(property.ShouldSerializeValue(control)); 1100Assert.True(property.ShouldSerializeValue(control)); 1104Assert.False(property.ShouldSerializeValue(control)); 1181Assert.False(property.ShouldSerializeValue(control)); 1185Assert.True(property.ShouldSerializeValue(control)); 1189Assert.False(property.ShouldSerializeValue(control)); 1259Assert.False(property.ShouldSerializeValue(control)); 1263Assert.True(property.ShouldSerializeValue(control)); 1267Assert.False(property.ShouldSerializeValue(control)); 1344Assert.False(property.ShouldSerializeValue(control)); 1348Assert.True(property.ShouldSerializeValue(control)); 1352Assert.False(property.ShouldSerializeValue(control)); 1508Assert.False(property.ShouldSerializeValue(control)); 1512Assert.True(property.ShouldSerializeValue(control)); 1516Assert.False(property.ShouldSerializeValue(control)); 1721Assert.False(property.ShouldSerializeValue(control)); 1725Assert.True(property.ShouldSerializeValue(control)); 1729Assert.False(property.ShouldSerializeValue(control)); 1799Assert.False(property.ShouldSerializeValue(control)); 1803Assert.True(property.ShouldSerializeValue(control)); 1807Assert.False(property.ShouldSerializeValue(control)); 1884Assert.False(property.ShouldSerializeValue(control)); 1888Assert.True(property.ShouldSerializeValue(control)); 1892Assert.False(property.ShouldSerializeValue(control)); 1962Assert.False(property.ShouldSerializeValue(control)); 1966Assert.True(property.ShouldSerializeValue(control)); 1970Assert.False(property.ShouldSerializeValue(control)); 2218Assert.False(property.ShouldSerializeValue(control)); 2222Assert.True(property.ShouldSerializeValue(control)); 2226Assert.False(property.ShouldSerializeValue(control)); 2465Assert.False(property.ShouldSerializeValue(control)); 2469Assert.True(property.ShouldSerializeValue(control)); 2473Assert.False(property.ShouldSerializeValue(control)); 2543Assert.False(property.ShouldSerializeValue(control)); 2547Assert.True(property.ShouldSerializeValue(control)); 2551Assert.False(property.ShouldSerializeValue(control)); 3269Assert.False(property.ShouldSerializeValue(control)); 3273Assert.True(property.ShouldSerializeValue(control)); 3277Assert.False(property.ShouldSerializeValue(control)); 3354Assert.False(property.ShouldSerializeValue(control)); 3358Assert.True(property.ShouldSerializeValue(control)); 3362Assert.False(property.ShouldSerializeValue(control)); 3439Assert.False(property.ShouldSerializeValue(control)); 3443Assert.True(property.ShouldSerializeValue(control)); 3447Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\ScrollableControlTests.cs (10)
442Assert.False(property.ShouldSerializeValue(control)); 446Assert.True(property.ShouldSerializeValue(control)); 450Assert.True(property.ShouldSerializeValue(control)); 454Assert.True(property.ShouldSerializeValue(control)); 458Assert.False(property.ShouldSerializeValue(control)); 683Assert.False(property.ShouldSerializeValue(control)); 687Assert.True(property.ShouldSerializeValue(control)); 691Assert.True(property.ShouldSerializeValue(control)); 695Assert.True(property.ShouldSerializeValue(control)); 699Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\StatusStripTests.cs (6)
579Assert.False(property.ShouldSerializeValue(control)); 583Assert.True(property.ShouldSerializeValue(control)); 587Assert.True(property.ShouldSerializeValue(control)); 591Assert.False(property.ShouldSerializeValue(control)); 595Assert.False(property.ShouldSerializeValue(control)); 599Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\TabControlTests.cs (10)
1583Assert.False(property.ShouldSerializeValue(control)); 1587Assert.True(property.ShouldSerializeValue(control)); 1591Assert.True(property.ShouldSerializeValue(control)); 1595Assert.True(property.ShouldSerializeValue(control)); 1599Assert.False(property.ShouldSerializeValue(control)); 1792Assert.False(property.ShouldSerializeValue(control)); 1796Assert.True(property.ShouldSerializeValue(control)); 1800Assert.True(property.ShouldSerializeValue(control)); 1804Assert.True(property.ShouldSerializeValue(control)); 1808Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\TableLayoutPanelTests.cs (4)
358Assert.False(property.ShouldSerializeValue(control)); 361Assert.False(property.ShouldSerializeValue(control)); 366Assert.True(property.ShouldSerializeValue(control)); 370Assert.True(property.ShouldSerializeValue(control));
System\Windows\Forms\TabPageTests.cs (6)
2394Assert.False(property.ShouldSerializeValue(control)); 2398Assert.True(property.ShouldSerializeValue(control)); 2402Assert.True(property.ShouldSerializeValue(control)); 2406Assert.True(property.ShouldSerializeValue(control)); 2410Assert.True(property.ShouldSerializeValue(control)); 2414Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\ToolStripContentPanelTests.cs (6)
1465Assert.False(property.ShouldSerializeValue(item)); 1469Assert.True(property.ShouldSerializeValue(item)); 1473Assert.False(property.ShouldSerializeValue(item)); 1477Assert.False(property.ShouldSerializeValue(item)); 1481Assert.True(property.ShouldSerializeValue(item)); 1485Assert.False(property.ShouldSerializeValue(item));
System\Windows\Forms\ToolStripControlHostTests.cs (21)
365Assert.False(property.ShouldSerializeValue(item)); 369Assert.True(property.ShouldSerializeValue(item)); 373Assert.False(property.ShouldSerializeValue(item)); 383Assert.False(property.ShouldSerializeValue(item)); 1041Assert.False(property.ShouldSerializeValue(item)); 1046Assert.True(property.ShouldSerializeValue(item)); 1050Assert.False(property.ShouldSerializeValue(item)); 1054Assert.True(property.ShouldSerializeValue(item)); 1058Assert.False(property.ShouldSerializeValue(item)); 1068Assert.False(property.ShouldSerializeValue(item)); 1184Assert.False(property.ShouldSerializeValue(item)); 1188Assert.True(property.ShouldSerializeValue(item)); 1192Assert.False(property.ShouldSerializeValue(item)); 1202Assert.False(property.ShouldSerializeValue(item)); 1687Assert.False(property.ShouldSerializeValue(item)); 1691Assert.True(property.ShouldSerializeValue(item)); 1695Assert.True(property.ShouldSerializeValue(item)); 1699Assert.False(property.ShouldSerializeValue(item)); 1703Assert.True(property.ShouldSerializeValue(item)); 1707Assert.False(property.ShouldSerializeValue(item)); 1718Assert.False(property.ShouldSerializeValue(item));
System\Windows\Forms\ToolStripDropDownTests.cs (4)
1449Assert.False(property.ShouldSerializeValue(control)); 1453Assert.True(property.ShouldSerializeValue(control)); 1457Assert.True(property.ShouldSerializeValue(control)); 1461Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\ToolStripItemTests.cs (76)
1754Assert.False(property.ShouldSerializeValue(item)); 1758Assert.True(property.ShouldSerializeValue(item)); 1762Assert.False(property.ShouldSerializeValue(item)); 2347Assert.False(property.ShouldSerializeValue(item)); 2351Assert.True(property.ShouldSerializeValue(item)); 2355Assert.False(property.ShouldSerializeValue(item)); 3209Assert.False(property.ShouldSerializeValue(item)); 3214Assert.True(property.ShouldSerializeValue(item)); 3220Assert.False(property.ShouldSerializeValue(item)); 3224Assert.True(property.ShouldSerializeValue(item)); 3230Assert.False(property.ShouldSerializeValue(item)); 3447Assert.False(property.ShouldSerializeValue(item)); 3451Assert.True(property.ShouldSerializeValue(item)); 3455Assert.False(property.ShouldSerializeValue(item)); 4130Assert.False(property.ShouldSerializeValue(item)); 4135Assert.True(property.ShouldSerializeValue(item)); 4139Assert.False(property.ShouldSerializeValue(item)); 4158Assert.False(property.ShouldSerializeValue(item)); 4163Assert.True(property.ShouldSerializeValue(item)); 4167Assert.False(property.ShouldSerializeValue(item)); 4818Assert.False(property.ShouldSerializeValue(item)); 4821Assert.False(property.ShouldSerializeValue(item)); 4826Assert.False(property.ShouldSerializeValue(item)); 4830Assert.False(property.ShouldSerializeValue(item)); 4842Assert.False(property.ShouldSerializeValue(item)); 4845Assert.False(property.ShouldSerializeValue(item)); 4850Assert.False(property.ShouldSerializeValue(item)); 4854Assert.False(property.ShouldSerializeValue(item)); 4872Assert.False(property.ShouldSerializeValue(item)); 4876Assert.True(property.ShouldSerializeValue(item)); 4880Assert.True(property.ShouldSerializeValue(item)); 4884Assert.False(property.ShouldSerializeValue(item)); 4888Assert.False(property.ShouldSerializeValue(item)); 5317Assert.False(property.ShouldSerializeValue(item)); 5322Assert.False(property.ShouldSerializeValue(item)); 5327Assert.False(property.ShouldSerializeValue(item)); 5332Assert.False(property.ShouldSerializeValue(item)); 5336Assert.False(property.ShouldSerializeValue(item)); 5348Assert.False(property.ShouldSerializeValue(item)); 5353Assert.False(property.ShouldSerializeValue(item)); 5358Assert.False(property.ShouldSerializeValue(item)); 5363Assert.False(property.ShouldSerializeValue(item)); 5367Assert.False(property.ShouldSerializeValue(item)); 5385Assert.False(property.ShouldSerializeValue(item)); 5389Assert.True(property.ShouldSerializeValue(item)); 5393Assert.False(property.ShouldSerializeValue(item)); 5397Assert.False(property.ShouldSerializeValue(item)); 5401Assert.False(property.ShouldSerializeValue(item)); 5798Assert.False(property.ShouldSerializeValue(item)); 5802Assert.True(property.ShouldSerializeValue(item)); 5806Assert.False(property.ShouldSerializeValue(item)); 6115Assert.False(property.ShouldSerializeValue(item)); 6119Assert.True(property.ShouldSerializeValue(item)); 6123Assert.False(property.ShouldSerializeValue(item)); 6930Assert.False(property.ShouldSerializeValue(item)); 6934Assert.True(property.ShouldSerializeValue(item)); 6938Assert.False(property.ShouldSerializeValue(item)); 7444Assert.False(property.ShouldSerializeValue(item)); 7448Assert.True(property.ShouldSerializeValue(item)); 7452Assert.True(property.ShouldSerializeValue(item)); 7456Assert.False(property.ShouldSerializeValue(item)); 7460Assert.True(property.ShouldSerializeValue(item)); 7464Assert.False(property.ShouldSerializeValue(item)); 8798Assert.False(property.ShouldSerializeValue(item)); 8802Assert.True(property.ShouldSerializeValue(item)); 8806Assert.True(property.ShouldSerializeValue(item)); 8810Assert.True(property.ShouldSerializeValue(item)); 8814Assert.False(property.ShouldSerializeValue(item)); 9102Assert.False(property.ShouldSerializeValue(item)); 9107Assert.False(property.ShouldSerializeValue(item)); 9112Assert.False(property.ShouldSerializeValue(item)); 9117Assert.True(property.ShouldSerializeValue(item)); 9121Assert.False(property.ShouldSerializeValue(item)); 9614Assert.False(property.ShouldSerializeValue(item)); 9618Assert.True(property.ShouldSerializeValue(item)); 9622Assert.True(property.ShouldSerializeValue(item));
System\Windows\Forms\ToolStripSeparatorTests.cs (3)
404Assert.False(property.ShouldSerializeValue(item)); 408Assert.True(property.ShouldSerializeValue(item)); 412Assert.True(property.ShouldSerializeValue(item));
System\Windows\Forms\ToolStripTests.cs (10)
2222Assert.False(property.ShouldSerializeValue(control)); 2226Assert.True(property.ShouldSerializeValue(control)); 2230Assert.True(property.ShouldSerializeValue(control)); 2234Assert.False(property.ShouldSerializeValue(control)); 3405Assert.False(property.ShouldSerializeValue(control)); 3409Assert.True(property.ShouldSerializeValue(control)); 3413Assert.True(property.ShouldSerializeValue(control)); 3417Assert.False(property.ShouldSerializeValue(control)); 3421Assert.False(property.ShouldSerializeValue(control)); 3425Assert.False(property.ShouldSerializeValue(control));
System\Windows\Forms\ToolTipTests.cs (25)
192Assert.False(automaticProperty.ShouldSerializeValue(toolTip)); 193Assert.False(initialProperty.ShouldSerializeValue(toolTip)); 194Assert.False(reshowProperty.ShouldSerializeValue(toolTip)); 195Assert.False(autoPopProperty.ShouldSerializeValue(toolTip)); 200Assert.False(automaticProperty.ShouldSerializeValue(toolTip)); 201Assert.False(initialProperty.ShouldSerializeValue(toolTip)); 202Assert.False(reshowProperty.ShouldSerializeValue(toolTip)); 203Assert.False(autoPopProperty.ShouldSerializeValue(toolTip)); 208Assert.True(automaticProperty.ShouldSerializeValue(toolTip)); 209Assert.False(initialProperty.ShouldSerializeValue(toolTip)); 210Assert.False(reshowProperty.ShouldSerializeValue(toolTip)); 211Assert.False(autoPopProperty.ShouldSerializeValue(toolTip)); 216Assert.True(automaticProperty.ShouldSerializeValue(toolTip)); 217Assert.True(initialProperty.ShouldSerializeValue(toolTip)); 218Assert.True(reshowProperty.ShouldSerializeValue(toolTip)); 219Assert.True(autoPopProperty.ShouldSerializeValue(toolTip)); 262Assert.False(property.ShouldSerializeValue(toolTip)); 265Assert.True(property.ShouldSerializeValue(toolTip)); 268Assert.True(property.ShouldSerializeValue(toolTip)); 387Assert.False(property.ShouldSerializeValue(toolTip)); 390Assert.True(property.ShouldSerializeValue(toolTip)); 393Assert.True(property.ShouldSerializeValue(toolTip)); 472Assert.False(property.ShouldSerializeValue(toolTip)); 475Assert.True(property.ShouldSerializeValue(toolTip)); 478Assert.True(property.ShouldSerializeValue(toolTip));
System\Windows\Forms\TreeNodeTests.cs (6)
438Assert.False(property.ShouldSerializeValue(node)); 442Assert.True(property.ShouldSerializeValue(node)); 446Assert.True(property.ShouldSerializeValue(node)); 879Assert.False(property.ShouldSerializeValue(node)); 883Assert.True(property.ShouldSerializeValue(node)); 887Assert.True(property.ShouldSerializeValue(node));