20 references to BaseGet
Microsoft.Build (3)
ToolsetElement.cs (3)
214return (ExtensionsPathElement)this.BaseGet(os); 397return (PropertyElement)this.BaseGet(name); 568return (ToolsetElement)this.BaseGet(toolsVersion);
Microsoft.Build.Engine (2)
Engine\ToolsetConfigurationReader.cs (2)
356return (ToolsetElement)this.BaseGet(toolsVersion); 521return (PropertyElement)this.BaseGet(name);
Microsoft.Build.Utilities.Core (3)
ToolsetElement.cs (3)
214return (ExtensionsPathElement)this.BaseGet(os); 397return (PropertyElement)this.BaseGet(name); 568return (ToolsetElement)this.BaseGet(toolsVersion);
System.Configuration.ConfigurationManager (11)
System\Configuration\ConnectionStringSettingsCollection.cs (1)
27public new ConnectionStringSettings this[string name] => (ConnectionStringSettings)BaseGet(name);
System\Configuration\KeyValueConfigurationCollection.cs (2)
21public new KeyValueConfigurationElement this[string key] => (KeyValueConfigurationElement)BaseGet(key); 32KeyValueConfigurationElement oldValue = (KeyValueConfigurationElement)BaseGet(keyValue.Key);
System\Configuration\NameValueConfigurationCollection.cs (2)
15get { return (NameValueConfigurationElement)BaseGet(name); } 19NameValueConfigurationElement tempElement = (NameValueConfigurationElement)BaseGet(name);
System\Configuration\ProviderSettingsCollection.cs (1)
17public new ProviderSettings this[string key] => (ProviderSettings)BaseGet(key);
System\Configuration\SchemeSettingElementCollection.cs (1)
36get { return (SchemeSettingElement)BaseGet(name); }
System\Configuration\SettingElementCollection.cs (1)
36return (SettingElement)BaseGet(elementKey);
System\Diagnostics\ListenerElementsCollection.cs (1)
17public new ListenerElement this[string name] => (ListenerElement)BaseGet(name);
System\Diagnostics\SourceElementsCollection.cs (1)
16public new SourceElement this[string name] => (SourceElement)BaseGet(name);
System\Diagnostics\SwitchElementsCollection.cs (1)
14public new SwitchElement this[string name] => (SwitchElement)BaseGet(name);
System.Runtime.Caching (1)
System\Runtime\Caching\Configuration\MemoryCacheSettingsCollection.cs (1)
48return (MemoryCacheElement)BaseGet(key);