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