2 writes to Type
Microsoft.Build (1)
ToolsetElement.cs (1)
80msbuildSection.SectionInformation.Type = typeof(ToolsetConfigurationSection).AssemblyQualifiedName;
Microsoft.Build.Utilities.Core (1)
ToolsetElement.cs (1)
80msbuildSection.SectionInformation.Type = typeof(ToolsetConfigurationSection).AssemblyQualifiedName;
10 references to Type
Microsoft.Build (2)
ToolsetElement.cs (2)
76if (String.IsNullOrEmpty(msbuildSection.SectionInformation.Type) || 77msbuildSection.SectionInformation.Type.IndexOf("Microsoft.Build", StringComparison.OrdinalIgnoreCase) >= 0)
Microsoft.Build.Utilities.Core (2)
ToolsetElement.cs (2)
76if (String.IsNullOrEmpty(msbuildSection.SectionInformation.Type) || 77msbuildSection.SectionInformation.Type.IndexOf("Microsoft.Build", StringComparison.OrdinalIgnoreCase) >= 0)
System.Configuration.ConfigurationManager (6)
System\Configuration\MgmtConfigurationRecord.cs (5)
686string typeName = configSection.SectionInformation.Type ?? Host.GetConfigTypeName(configSection.GetType()); 1132return (factoryRecord.FactoryTypeName != configSection.SectionInformation.Type) 1159string type = configSection.SectionInformation.Type ?? factoryRecord.FactoryTypeName; 1758if (configSection.SectionInformation.Type != null) 1759factoryRecord.FactoryTypeName = configSection.SectionInformation.Type;
System\Configuration\SectionInformation.cs (1)
364if (string.IsNullOrEmpty(value)) throw ExceptionUtil.PropertyNullOrEmpty(nameof(Type));