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