1 instantiation of PropertyInformation
System.Configuration (1)
System\Configuration\PropertyInformationCollection.cs (1)
29BaseAdd(prop.Name, new PropertyInformation(thisElement, prop.Name));
20 references to PropertyInformation
System.Configuration (10)
System\Configuration\ConfigurationElement.cs (1)
248foreach (PropertyInformation propInfo in source.ElementInformation.Properties) {
System\Configuration\PropertyInformationCollection.cs (9)
44public PropertyInformation this[string propertyName] { 46PropertyInformation result = (PropertyInformation) BaseGet (propertyName); 50PropertyInformation defaultColl = 51(PropertyInformation) BaseGet (ConfigurationProperty.DefaultCollectionPropertyName); 61internal PropertyInformation this[int index] { 63return (PropertyInformation)BaseGet(BaseGetKey(index)); 67public void CopyTo(PropertyInformation[] array, int index) { 76foreach (PropertyInformation pi in this) {
System.ServiceModel (3)
System\ServiceModel\Configuration\SecurityElementBase.cs (2)
839Func<PropertyInformation, bool> nontrivialProperty = property => property.ValueOrigin == PropertyValueOrigin.SetHere; 840if (this.IsSecurityElementBootstrap && !this.ElementInformation.Properties.OfType<PropertyInformation>().Any(nontrivialProperty))
System\ServiceModel\Configuration\ServiceModelConfigurationElementCollection.cs (1)
87foreach (PropertyInformation propertyInfo in dummyElement.ElementInformation.Properties)
System.ServiceModel.Web (1)
System\ServiceModel\Configuration\WebHttpSecurityElement.cs (1)
104PropertyInformation configurationPropertyInfo = element.ElementInformation.Properties[propertyName];
System.Web (6)
Compilation\ProfileBuildProvider.cs (1)
117PropertyInformation prop = config.ElementInformation.Properties["inherits"];
Configuration\ConfigUtil.cs (2)
119internal static ConfigurationErrorsException MakeConfigurationErrorsException(string message, Exception innerException = null, PropertyInformation configProperty = null) { 128PropertyInformation propInfo = configSection.ElementInformation.Properties[property.Name];
Configuration\HttpRuntimeSection.cs (1)
567PropertyInformation targetFrameworkPropInfo = ElementInformation.Properties["targetFramework"];
Hosting\ProcessHost.cs (1)
371PropertyInformation propInfo = null;
HttpRuntime.cs (1)
2723PropertyInformation propInfo = elemInfo.Properties[propertyName];