8 references to IsRequired
System.Configuration (8)
System\Configuration\ConfigurationElement.cs (6)
1049if ((prop.IsRequired == true || saveMode == ConfigurationSaveMode.Full) && (value == null || value == s_nullPropertyValue)) { 1072if (!Object.Equals(value, value2) || prop.IsRequired == true) 1084if ((prop.IsRequired || modified || !inherited) || 1184if (prop.IsRequired == true) 1402if (propToLock != null && propToLock.IsRequired == true) 1792if (prop.IsRequired && !_values.Contains(prop.Name)) {
System\Configuration\ConfigurationLockCollection.cs (1)
108if (propToLock != null && propToLock.IsRequired)
System\Configuration\PropertyInformation.cs (1)
122return Prop.IsRequired;